2021-09-25 23:40:11 索炜达电子 971
项目编号:E1319
文件大小:7M
源码说明:带中文注释
开发环境:C编译器
简要概述:
数字识别系统移植到STM32上,基于芯片STM32F103RBT6,128KB falsh,识别气表计数器上的5个数字。
硬件连接注意:
1、在连接OV7670模块与MiniSTM32开发板的时候,请将D0~D7连接线靠在一起,将其与数据线靠在一起,这样可以有效避免相互干扰。
2、ALIENTEK OV7670摄像头模块与ALIENTEK MiniSTM32开发板的连接方式为:
D0~D7-->PB0~PB7
WRST -->PA0
RRST -->PA4
SCL -->PC4
SDA -->PC5
OE -->PA11
WEN -->PA12
RCLK -->PA1
VSYNC-->PA15
3、DS0用于指示程序运行状态。
目录│文件列表:
│ 不绕弯路,获取海量资源.jpg
└ NumRecognizeOnChip
│ keilkill.bat
│ README.TXT
│ 照片0322.jpg
│ 照片0323.jpg
│ 照片0324.jpg
│ 照片0325.jpg
├ data
│ │ Rec140309231552.txt
│ │ Rec140309234516.txt
│ │ Rec140309234522.txt
│ │ Rec140309235448.txt
│ └ 图像中数据.rar
├ HARDWARE
│ ├ 24CXX
│ │ │ 24cxx.c
│ │ │ 24cxx.h
│ │ │ myiic.c
│ │ └ myiic.h
│ ├ DMA
│ │ │ dma.c
│ │ └ dma.h
│ ├ EXTI
│ │ │ exti.c
│ │ └ exti.h
│ ├ KEY
│ │ │ key.c
│ │ └ key.h
│ ├ LCD
│ │ │ FONT.H
│ │ │ ILI93xx.c
│ │ └ LCD.h
│ ├ LED
│ │ │ led.c
│ │ └ led.h
│ ├ OLED
│ │ │ FONT.H
│ │ │ oled.c
│ │ └ oled.h
│ ├ OV7670
│ │ │ ov7670.c
│ │ │ ov7670.h
│ │ │ ov7670cfg.h
│ │ │ sccb.c
│ │ └ sccb.h
│ ├ TIMER
│ │ │ timer.c
│ │ └ timer.h
│ ├ TOUCH
│ │ │ touch.c
│ │ └ touch.h
│ └ WDG
│ │ wdg.c
│ └ wdg.h
├ SYSTEM
│ ├ delay
│ │ │ delay.c
│ │ └ delay.h
│ ├ sys
│ │ │ cortexm3_macro.h
│ │ │ stm32f10x_conf.h
│ │ │ stm32f10x_it.h
│ │ │ stm32f10x_map.h
│ │ │ stm32f10x_nvic.h
│ │ │ stm32f10x_type.h
│ │ │ sys.c
│ │ └ sys.h
│ └ usart
│ │ usart.c
│ └ usart.h
├ USER
│ │ 24cxx.crf
│ │ 24cxx.d
│ │ 24cxx.o
│ │ base.h
│ │ delay.crf
│ │ delay.d
│ │ delay.o
│ │ exti.crf
│ │ exti.d
│ │ exti.o
│ │ ili93xx.crf
│ │ ili93xx.d
│ │ ili93xx.o
│ │ img.c
│ │ img.crf
│ │ img.d
│ │ img.h
│ │ img.o
│ │ JLink Regs CM3.txt
│ │ JLinkLog.txt
│ │ JLinkSettings.ini
│ │ key.crf
│ │ key.d
│ │ key.o
│ │ led.crf
│ │ led.d
│ │ led.o
│ │ main.c
│ │ main.crf
│ │ main.d
│ │ main.h
│ │ main.o
│ │ memmgr.c
│ │ memmgr.crf
│ │ memmgr.d
│ │ memmgr.h
│ │ memmgr.o
│ │ myiic.crf
│ │ myiic.d
│ │ myiic.o
│ │ ov7670.crf
│ │ ov7670.d
│ │ ov7670.o
│ │ recog.c
│ │ recog.crf
│ │ recog.d
│ │ recog.h
│ │ recog.o
│ │ sccb.crf
│ │ sccb.d
│ │ sccb.o
│ │ STM32F10x.d
│ │ STM32F10x.lst
│ │ STM32F10x.o
│ │ STM32F10x.s
│ │ sys.crf
│ │ sys.d
│ │ sys.o
│ │ TEST - 副本.hex
│ │ TEST.axf
│ │ TEST.hex
│ │ TEST.htm
│ │ TEST.lib
│ │ TEST.lnp
│ │ TEST.map
│ │ TEST.Opt
│ │ TEST.plg
│ │ TEST.sct
│ │ TEST.tra
│ │ TEST.Uv2
│ │ TEST.uvgui.acer
│ │ TEST.uvgui.Administrator
│ │ TEST.uvopt
│ │ TEST.uvproj
│ │ TEST_Target 1.dep
│ │ TEST_uvopt.bak
│ │ timer.crf
│ │ timer.d
│ │ timer.o
│ │ touch.crf
│ │ touch.d
│ │ touch.o
│ │ usart.crf
│ │ usart.d
│ │ usart.o
│ │ usmart.crf
│ │ usmart.d
│ │ usmart.o
│ │ usmart_config.crf
│ │ usmart_config.d
│ │ usmart_config.o
│ │ usmart_str.crf
│ │ usmart_str.d
│ │ usmart_str.o
│ │ wdg.crf
│ │ wdg.d
│ └ wdg.o
└ USMART
│ readme.txt
│ usmart.c
│ usmart.h
│ usmart_config.c
│ usmart_str.c
└ usmart_str.h