19 lines
484 B
C
19 lines
484 B
C
|
|
#ifndef _ISP_DEV_H_
|
||
|
|
#define _ISP_DEV_H_
|
||
|
|
|
||
|
|
#include "hal/isp.h"
|
||
|
|
typedef struct sensor_isp_info {
|
||
|
|
struct list_head list;
|
||
|
|
uint16 sensor_src;
|
||
|
|
uint16 sensor_type;
|
||
|
|
uint16 sensor_dev_id;
|
||
|
|
uint16 sensor_opt_cmd;
|
||
|
|
uint32 sensor_config;
|
||
|
|
} SENSOR_BASIC_INFO;
|
||
|
|
|
||
|
|
void isp_cfg_dev();
|
||
|
|
void sensor_info_init();
|
||
|
|
void sensor_info_destory();
|
||
|
|
void sensor_info_add(enum sensor_type type, enum isp_input_dat_src sensor_src, uint32 sensor_config, uint32 iic_id, uint32 opt_cmd);
|
||
|
|
#endif
|