mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-09-09 09:43:47 +08:00
eefc084302
version: sunnypilot v2025.003.000 (dev) date: 2025-12-18T05:48:43 master commit: 16c052af0835f049a67b80251d8cc1114fc08bb4
26 lines
668 B
C
26 lines
668 B
C
#ifndef __UAPI_CAM_CPAS_H__
|
|
#define __UAPI_CAM_CPAS_H__
|
|
|
|
#include "cam_defs.h"
|
|
|
|
#define CAM_FAMILY_CAMERA_SS 1
|
|
#define CAM_FAMILY_CPAS_SS 2
|
|
|
|
/**
|
|
* struct cam_cpas_query_cap - CPAS query device capability payload
|
|
*
|
|
* @camera_family : Camera family type
|
|
* @reserved : Reserved field for alignment
|
|
* @camera_version : Camera platform version
|
|
* @cpas_version : Camera CPAS version within camera platform
|
|
*
|
|
*/
|
|
struct cam_cpas_query_cap {
|
|
uint32_t camera_family;
|
|
uint32_t reserved;
|
|
struct cam_hw_version camera_version;
|
|
struct cam_hw_version cpas_version;
|
|
};
|
|
|
|
#endif /* __UAPI_CAM_CPAS_H__ */
|