#include "board.h"
Go to the source code of this file.
Defines | |
#define | MANUFACTURER_ID 0x7FA2 |
#define | OV2643_SLAVE_ADDRESS 0x30 |
#define | OV2643_PIDH_ADDRESS 0x0A |
#define | OV2643_PIDL_ADDRESS 0x0B |
#define | OV2643_PIDH 0x26 |
#define | OV2643_PIDL 0x43 |
#define | OV2643_PID_VER_MASK 0xFFF0 |
Variables | |
const sensorReg_t | ov2643_yuv_uvga [] |
const sensorReg_t | ov2643_yuv_svga [] |
const sensorReg_t | ov2643_yuv_vga [] |
const sensorOutput_t | ov2643_output_vga |
const sensorOutput_t | ov2643_output_svga |
const sensorOutput_t | ov2643_output_uvga |
const sensorProfile_t | ov2643Profile |
Definition in file ov2643_config.c.
const sensorOutput_t ov2643_output_svga |
{0, SVGA, YUV_422_8_BIT, 1, 800, 600, ov2643_yuv_svga }
Definition at line 691 of file ov2643_config.c.
const sensorOutput_t ov2643_output_uvga |
{0, UVGA, YUV_422_8_BIT, 1, 1600, 1200, ov2643_yuv_uvga }
Definition at line 694 of file ov2643_config.c.
const sensorOutput_t ov2643_output_vga |
{0 , VGA, YUV_422_8_BIT, 1, 640, 480, ov2643_yuv_vga }
Definition at line 688 of file ov2643_config.c.
const sensorProfile_t ov2643Profile |
{ SENSOR_COMS, SENSOR_TWI_REG_BYTE_DATA_BYTE, OV2643_SLAVE_ADDRESS, OV2643_PIDH_ADDRESS, OV2643_PIDL_ADDRESS, OV2643_PIDH, OV2643_PIDL, OV2643_PID_VER_MASK, &ov2643_output_vga, &ov2643_output_svga, &ov2643_output_uvga, 0, 0, 0, 0 }
Definition at line 697 of file ov2643_config.c.