OpenMV4 support OV7670 (#1404)

* OpenMV4 support OV7670 now
This commit is contained in:
elmagnifico 2021-07-26 01:27:07 +08:00 committed by GitHub
parent 8887ab114e
commit 029eebdab7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View File

@ -55,6 +55,7 @@
// Enable sensor drivers
#define OMV_ENABLE_OV2640 (1)
#define OMV_ENABLE_OV5640 (1)
#define OMV_ENABLE_OV7670 (0)
#define OMV_ENABLE_OV7690 (1)
#define OMV_ENABLE_OV7725 (1)
#define OMV_ENABLE_OV9650 (1)
@ -64,6 +65,12 @@
#define OMV_ENABLE_HM01B0 (0)
#define OMV_ENABLE_PAJ6100 (1)
// Set which OV767x sensor is used
#define OMV_OV7670_VERSION (70)
// OV7670 clock divider
#define OMV_OV7670_CLKRC (0)
// Enable sensor features
#define OMV_ENABLE_OV5640_AF (0)

View File

@ -513,6 +513,7 @@ UVC_OBJ += $(addprefix $(BUILD)/$(OMV_DIR)/sensors/, \
ov2640.o \
ov5640.o \
ov7690.o \
ov7670.o \
ov7725.o \
ov9650.o \
mt9v034.o \