实例介绍
基于单片机的动态二维码门禁系统设计 该项目包括原理图电路图 程序源码 演示视频讲解文档全套资料 三分拿去 超值了
【实例截图】
【核心代码】
16359647343813690949.zip
├── 成品
│ └── 文件
│ ├── Passward
│ │ ├── BSP
│ │ │ ├── 24C256
│ │ │ │ ├── 24c256.c
│ │ │ │ └── 24c256.h
│ │ │ ├── 24CXX
│ │ │ │ ├── 24cxx.c
│ │ │ │ └── 24cxx.h
│ │ │ ├── 256IIC
│ │ │ │ ├── 256iic.c
│ │ │ │ └── 256iic.h
│ │ │ ├── 4X4
│ │ │ │ ├── key4x4.c
│ │ │ │ └── key4x4.h
│ │ │ ├── BEEP_RELAY
│ │ │ │ ├── beep_relay.c
│ │ │ │ └── beep_relay.h
│ │ │ ├── IIC
│ │ │ │ ├── myiic.c
│ │ │ │ └── myiic.h
│ │ │ ├── LD3320
│ │ │ │ ├── LD3320.c
│ │ │ │ ├── LD3320_config.h
│ │ │ │ └── LD3320.h
│ │ │ ├── Led
│ │ │ │ ├── led.c
│ │ │ │ └── led.h
│ │ │ ├── OLED
│ │ │ │ ├── bmp.h
│ │ │ │ ├── oled.c
│ │ │ │ ├── oledfont.h
│ │ │ │ ├── oledfont.h~RF6761e0a.TMP
│ │ │ │ ├── oled.h
│ │ │ │ ├── 请输入密码:_index.TXT
│ │ │ │ └── 请输入密码:.TXT
│ │ │ ├── RTC
│ │ │ │ ├── RTC_Time.c
│ │ │ │ └── RTC_Time.h
│ │ │ ├── RTC_Time
│ │ │ │ ├── RTC_Time.c
│ │ │ │ └── RTC_Time.h
│ │ │ └── Sys
│ │ │ ├── delay.c
│ │ │ ├── delay.h
│ │ │ ├── sys.c
│ │ │ ├── sys.h
│ │ │ ├── usart.c
│ │ │ └── usart.h
│ │ ├── config
│ │ │ ├── stm32f10x_flash_extsram.icf
│ │ │ ├── stm32f10x_flash.icf
│ │ │ ├── stm32f10x_nor.icf
│ │ │ └── stm32f10x_ram.icf
│ │ ├── Libraries
│ │ │ ├── CMSIS
│ │ │ │ ├── CM3
│ │ │ │ │ ├── CoreSupport
│ │ │ │ │ │ ├── core_cm3.c
│ │ │ │ │ │ └── core_cm3.h
│ │ │ │ │ └── DeviceSupport
│ │ │ │ │ └── ST
│ │ │ │ │ └── STM32F10x
│ │ │ │ │ ├── Release_Notes.html
│ │ │ │ │ ├── startup
│ │ │ │ │ │ ├── arm
│ │ │ │ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s
│ │ │ │ │ │ │ └── startup_stm32f10x_xl.s
│ │ │ │ │ │ ├── gcc_ride7
│ │ │ │ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s
│ │ │ │ │ │ │ └── startup_stm32f10x_xl.s
│ │ │ │ │ │ ├── iar
│ │ │ │ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s
│ │ │ │ │ │ │ └── startup_stm32f10x_xl.s
│ │ │ │ │ │ └── TrueSTUDIO
│ │ │ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s
│ │ │ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s
│ │ │ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s
│ │ │ │ │ │ └── startup_stm32f10x_xl.s
│ │ │ │ │ ├── stm32f10x.h
│ │ │ │ │ ├── system_stm32f10x.c
│ │ │ │ │ └── system_stm32f10x.h
│ │ │ │ ├── CMSIS_changes.htm
│ │ │ │ ├── CMSIS debug support.htm
│ │ │ │ ├── Documentation
│ │ │ │ │ └── CMSIS_Core.htm
│ │ │ │ └── License.doc
│ │ │ └── STM32F10x_StdPeriph_Driver
│ │ │ ├── inc
│ │ │ │ ├── misc.h
│ │ │ │ ├── stm32f10x_adc.h
│ │ │ │ ├── stm32f10x_bkp.h
│ │ │ │ ├── stm32f10x_can.h
│ │ │ │ ├── stm32f10x_cec.h
│ │ │ │ ├── stm32f10x_conf.h
│ │ │ │ ├── stm32f10x_crc.h
│ │ │ │ ├── stm32f10x_dac.h
│ │ │ │ ├── stm32f10x_dbgmcu.h
│ │ │ │ ├── stm32f10x_dma.h
│ │ │ │ ├── stm32f10x_exti.h
│ │ │ │ ├── stm32f10x_flash.h
│ │ │ │ ├── stm32f10x_fsmc.h
│ │ │ │ ├── stm32f10x_gpio.h
│ │ │ │ ├── stm32f10x_i2c.h
│ │ │ │ ├── stm32f10x_iwdg.h
│ │ │ │ ├── stm32f10x_pwr.h
│ │ │ │ ├── stm32f10x_rcc.h
│ │ │ │ ├── stm32f10x_rtc.h
│ │ │ │ ├── stm32f10x_sdio.h
│ │ │ │ ├── stm32f10x_spi.h
│ │ │ │ ├── stm32f10x_tim.h
│ │ │ │ ├── stm32f10x_usart.h
│ │ │ │ ├── stm32f10x_wwdg.h
│ │ │ │ └── usrbool.h
│ │ │ ├── Release_Notes.html
│ │ │ └── src
│ │ │ ├── misc.c
│ │ │ ├── stm32f10x_adc.c
│ │ │ ├── stm32f10x_bkp.c
│ │ │ ├── stm32f10x_can.c
│ │ │ ├── stm32f10x_cec.c
│ │ │ ├── stm32f10x_crc.c
│ │ │ ├── stm32f10x_dac.c
│ │ │ ├── stm32f10x_dbgmcu.c
│ │ │ ├── stm32f10x_dma.c
│ │ │ ├── stm32f10x_exti.c
│ │ │ ├── stm32f10x_flash.c
│ │ │ ├── stm32f10x_fsmc.c
│ │ │ ├── stm32f10x_gpio.c
│ │ │ ├── stm32f10x_i2c.c
│ │ │ ├── stm32f10x_iwdg.c
│ │ │ ├── stm32f10x_pwr.c
│ │ │ ├── stm32f10x_rcc.c
│ │ │ ├── stm32f10x_rtc.c
│ │ │ ├── stm32f10x_sdio.c
│ │ │ ├── stm32f10x_spi.c
│ │ │ ├── stm32f10x_tim.c
│ │ │ ├── stm32f10x_usart.c
│ │ │ └── stm32f10x_wwdg.c
│ │ └── Project
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── MDK-ARM
│ │ │ ├── DebugConfig
│ │ │ │ └── RTC_STM32F103C8_1.0.0.dbgconf
│ │ │ ├── JLinkLog.txt
│ │ │ ├── JLinkSettings.ini
│ │ │ ├── Nu_Link_Driver.ini
│ │ │ ├── obj
│ │ │ │ ├── 24c256.crf
│ │ │ │ ├── 24c256.d
│ │ │ │ ├── 24c256.o
│ │ │ │ ├── 24cxx.crf
│ │ │ │ ├── 24cxx.d
│ │ │ │ ├── 24cxx.o
│ │ │ │ ├── 256iic.crf
│ │ │ │ ├── 256iic.d
│ │ │ │ ├── 256iic.o
│ │ │ │ ├── asr.crf
│ │ │ │ ├── asr.d
│ │ │ │ ├── asr.o
│ │ │ │ ├── beep_relay.crf
│ │ │ │ ├── beep_relay.d
│ │ │ │ ├── beep_relay.o
│ │ │ │ ├── delay.crf
│ │ │ │ ├── delay.d
│ │ │ │ ├── delay.o
│ │ │ │ ├── ExtDll.iex
│ │ │ │ ├── key4x4.crf
│ │ │ │ ├── key4x4.d
│ │ │ │ ├── key4x4.o
│ │ │ │ ├── ld3320.crf
│ │ │ │ ├── ld3320.d
│ │ │ │ ├── ld3320.o
│ │ │ │ ├── led.crf
│ │ │ │ ├── led.d
│ │ │ │ ├── led.o
│ │ │ │ ├── main.crf
│ │ │ │ ├── main.d
│ │ │ │ ├── main.o
│ │ │ │ ├── misc.crf
│ │ │ │ ├── misc.d
│ │ │ │ ├── misc.o
│ │ │ │ ├── myiic.crf
│ │ │ │ ├── myiic.d
│ │ │ │ ├── myiic.o
│ │ │ │ ├── oled.crf
│ │ │ │ ├── oled.d
│ │ │ │ ├── oled.o
│ │ │ │ ├── RTC_RTC.dep
│ │ │ │ ├── rtc_time.crf
│ │ │ │ ├── rtc_time.d
│ │ │ │ ├── rtc_time.o
│ │ │ │ ├── spi2.crf
│ │ │ │ ├── spi2.d
│ │ │ │ ├── spi2.o
│ │ │ │ ├── startup_stm32f10x_md.d
│ │ │ │ ├── startup_stm32f10x_md.o
│ │ │ │ ├── stm32f10x_adc.crf
│ │ │ │ ├── stm32f10x_adc.d
│ │ │ │ ├── stm32f10x_adc.o
│ │ │ │ ├── stm32f10x_bkp.crf
│ │ │ │ ├── stm32f10x_bkp.d
│ │ │ │ ├── stm32f10x_bkp.o
│ │ │ │ ├── stm32f10x_can.crf
│ │ │ │ ├── stm32f10x_can.d
│ │ │ │ ├── stm32f10x_can.o
│ │ │ │ ├── stm32f10x_cec.crf
│ │ │ │ ├── stm32f10x_cec.d
│ │ │ │ ├── stm32f10x_cec.o
│ │ │ │ ├── stm32f10x_crc.crf
│ │ │ │ ├── stm32f10x_crc.d
│ │ │ │ ├── stm32f10x_crc.o
│ │ │ │ ├── stm32f10x_dac.crf
│ │ │ │ ├── stm32f10x_dac.d
│ │ │ │ ├── stm32f10x_dac.o
│ │ │ │ ├── stm32f10x_dbgmcu.crf
│ │ │ │ ├── stm32f10x_dbgmcu.d
│ │ │ │ ├── stm32f10x_dbgmcu.o
│ │ │ │ ├── stm32f10x_dma.crf
│ │ │ │ ├── stm32f10x_dma.d
│ │ │ │ ├── stm32f10x_dma.o
│ │ │ │ ├── stm32f10x_exti.crf
│ │ │ │ ├── stm32f10x_exti.d
│ │ │ │ ├── stm32f10x_exti.o
│ │ │ │ ├── stm32f10x_flash.crf
│ │ │ │ ├── stm32f10x_flash.d
│ │ │ │ ├── stm32f10x_flash.o
│ │ │ │ ├── stm32f10x_fsmc.crf
│ │ │ │ ├── stm32f10x_fsmc.d
│ │ │ │ ├── stm32f10x_fsmc.o
│ │ │ │ ├── stm32f10x_gpio.crf
│ │ │ │ ├── stm32f10x_gpio.d
│ │ │ │ ├── stm32f10x_gpio.o
│ │ │ │ ├── stm32f10x_i2c.crf
│ │ │ │ ├── stm32f10x_i2c.d
│ │ │ │ ├── stm32f10x_i2c.o
│ │ │ │ ├── stm32f10x_it.crf
│ │ │ │ ├── stm32f10x_it.d
│ │ │ │ ├── stm32f10x_it.o
│ │ │ │ ├── stm32f10x_iwdg.crf
│ │ │ │ ├── stm32f10x_iwdg.d
│ │ │ │ ├── stm32f10x_iwdg.o
│ │ │ │ ├── stm32f10x_pwr.crf
│ │ │ │ ├── stm32f10x_pwr.d
│ │ │ │ ├── stm32f10x_pwr.o
│ │ │ │ ├── stm32f10x_rcc.crf
│ │ │ │ ├── stm32f10x_rcc.d
│ │ │ │ ├── stm32f10x_rcc.o
│ │ │ │ ├── stm32f10x_rtc.crf
│ │ │ │ ├── stm32f10x_rtc.d
│ │ │ │ ├── stm32f10x_rtc.o
│ │ │ │ ├── stm32f10x_sdio.crf
│ │ │ │ ├── stm32f10x_sdio.d
│ │ │ │ ├── stm32f10x_sdio.o
│ │ │ │ ├── stm32f10x_spi.crf
│ │ │ │ ├── stm32f10x_spi.d
│ │ │ │ ├── stm32f10x_spi.o
│ │ │ │ ├── stm32f10x_tim.crf
│ │ │ │ ├── stm32f10x_tim.d
│ │ │ │ ├── stm32f10x_tim.o
│ │ │ │ ├── stm32f10x_usart.crf
│ │ │ │ ├── stm32f10x_usart.d
│ │ │ │ ├── stm32f10x_usart.o
│ │ │ │ ├── stm32f10x_wwdg.crf
│ │ │ │ ├── stm32f10x_wwdg.d
│ │ │ │ ├── stm32f10x_wwdg.o
│ │ │ │ ├── sys.crf
│ │ │ │ ├── sys.d
│ │ │ │ ├── sys.o
│ │ │ │ ├── system_stm32f10x.crf
│ │ │ │ ├── system_stm32f10x.d
│ │ │ │ ├── system_stm32f10x.o
│ │ │ │ ├── usart.crf
│ │ │ │ ├── usart.d
│ │ │ │ ├── usart.o
│ │ │ │ ├── YD_DEMO.axf
│ │ │ │ ├── YD_DEMO.build_log.htm
│ │ │ │ ├── YD_DEMO.hex
│ │ │ │ ├── YD_DEMO.htm
│ │ │ │ ├── YD_DEMO.lnp
│ │ │ │ └── YD_DEMO.sct
│ │ │ ├── RTC.uvgui.song8023
│ │ │ ├── RTC.uvguix.14042
│ │ │ ├── RTC.uvguix.song8023
│ │ │ ├── RTC.uvopt
│ │ │ ├── RTC.uvoptx
│ │ │ ├── RTC.uvprojx
│ │ │ ├── startup_stm32f10x_md.lst
│ │ │ └── YD_DEMO.map
│ │ ├── stm32f10x_conf.h
│ │ ├── stm32f10x_it.c
│ │ └── stm32f10x_it.h
│ └── 二维码门禁系统_57307
│ ├── 82094183GM65条码识别模块用户手册.pdf
│ ├── Passward
│ │ ├── BSP
│ │ │ ├── 24CXX
│ │ │ │ ├── 24cxx.c
│ │ │ │ └── 24cxx.h
│ │ │ ├── 4X4
│ │ │ │ ├── key4x4.c
│ │ │ │ └── key4x4.h
│ │ │ ├── BEEP_RELAY
│ │ │ │ ├── beep_relay.c
│ │ │ │ └── beep_relay.h
│ │ │ ├── IIC
│ │ │ │ ├── myiic.c
│ │ │ │ └── myiic.h
│ │ │ ├── LD3320
│ │ │ │ ├── LD3320.c
│ │ │ │ ├── LD3320_config.h
│ │ │ │ └── LD3320.h
│ │ │ ├── Led
│ │ │ │ ├── led.c
│ │ │ │ └── led.h
│ │ │ ├── OLED
│ │ │ │ ├── bmp.h
│ │ │ │ ├── oled.c
│ │ │ │ ├── oledfont.h
│ │ │ │ ├── oledfont.h~RF6761e0a.TMP
│ │ │ │ ├── oled.h
│ │ │ │ ├── 请输入密码:_index.TXT
│ │ │ │ └── 请输入密码:.TXT
│ │ │ ├── RTC_Time
│ │ │ │ ├── RTC_Time.c
│ │ │ │ └── RTC_Time.h
│ │ │ └── Sys
│ │ │ ├── delay.c
│ │ │ ├── delay.h
│ │ │ ├── sys.c
│ │ │ ├── sys.h
│ │ │ ├── usart.c
│ │ │ └── usart.h
│ │ ├── config
│ │ │ ├── stm32f10x_flash_extsram.icf
│ │ │ ├── stm32f10x_flash.icf
│ │ │ ├── stm32f10x_nor.icf
│ │ │ └── stm32f10x_ram.icf
│ │ ├── doc
│ │ │ └── readme.txt
│ │ ├── Libraries
│ │ │ ├── CMSIS
│ │ │ │ ├── CM3
│ │ │ │ │ ├── CoreSupport
│ │ │ │ │ │ ├── core_cm3.c
│ │ │ │ │ │ └── core_cm3.h
│ │ │ │ │ └── DeviceSupport
│ │ │ │ │ └── ST
│ │ │ │ │ └── STM32F10x
│ │ │ │ │ ├── Release_Notes.html
│ │ │ │ │ ├── startup
│ │ │ │ │ │ ├── arm
│ │ │ │ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s
│ │ │ │ │ │ │ └── startup_stm32f10x_xl.s
│ │ │ │ │ │ ├── gcc_ride7
│ │ │ │ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s
│ │ │ │ │ │ │ └── startup_stm32f10x_xl.s
│ │ │ │ │ │ ├── iar
│ │ │ │ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s
│ │ │ │ │ │ │ └── startup_stm32f10x_xl.s
│ │ │ │ │ │ └── TrueSTUDIO
│ │ │ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s
│ │ │ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s
│ │ │ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s
│ │ │ │ │ │ └── startup_stm32f10x_xl.s
│ │ │ │ │ ├── stm32f10x.h
│ │ │ │ │ ├── system_stm32f10x.c
│ │ │ │ │ └── system_stm32f10x.h
│ │ │ │ ├── CMSIS_changes.htm
│ │ │ │ ├── CMSIS debug support.htm
│ │ │ │ ├── Documentation
│ │ │ │ │ └── CMSIS_Core.htm
│ │ │ │ └── License.doc
│ │ │ └── STM32F10x_StdPeriph_Driver
│ │ │ ├── inc
│ │ │ │ ├── misc.h
│ │ │ │ ├── stm32f10x_adc.h
│ │ │ │ ├── stm32f10x_bkp.h
│ │ │ │ ├── stm32f10x_can.h
│ │ │ │ ├── stm32f10x_cec.h
│ │ │ │ ├── stm32f10x_conf.h
│ │ │ │ ├── stm32f10x_crc.h
│ │ │ │ ├── stm32f10x_dac.h
│ │ │ │ ├── stm32f10x_dbgmcu.h
│ │ │ │ ├── stm32f10x_dma.h
│ │ │ │ ├── stm32f10x_exti.h
│ │ │ │ ├── stm32f10x_flash.h
│ │ │ │ ├── stm32f10x_fsmc.h
│ │ │ │ ├── stm32f10x_gpio.h
│ │ │ │ ├── stm32f10x_i2c.h
│ │ │ │ ├── stm32f10x_iwdg.h
│ │ │ │ ├── stm32f10x_pwr.h
│ │ │ │ ├── stm32f10x_rcc.h
│ │ │ │ ├── stm32f10x_rtc.h
│ │ │ │ ├── stm32f10x_sdio.h
│ │ │ │ ├── stm32f10x_spi.h
│ │ │ │ ├── stm32f10x_tim.h
│ │ │ │ ├── stm32f10x_usart.h
│ │ │ │ ├── stm32f10x_wwdg.h
│ │ │ │ └── usrbool.h
│ │ │ ├── Release_Notes.html
│ │ │ └── src
│ │ │ ├── misc.c
│ │ │ ├── stm32f10x_adc.c
│ │ │ ├── stm32f10x_bkp.c
│ │ │ ├── stm32f10x_can.c
│ │ │ ├── stm32f10x_cec.c
│ │ │ ├── stm32f10x_crc.c
│ │ │ ├── stm32f10x_dac.c
│ │ │ ├── stm32f10x_dbgmcu.c
│ │ │ ├── stm32f10x_dma.c
│ │ │ ├── stm32f10x_exti.c
│ │ │ ├── stm32f10x_flash.c
│ │ │ ├── stm32f10x_fsmc.c
│ │ │ ├── stm32f10x_gpio.c
│ │ │ ├── stm32f10x_i2c.c
│ │ │ ├── stm32f10x_iwdg.c
│ │ │ ├── stm32f10x_pwr.c
│ │ │ ├── stm32f10x_rcc.c
│ │ │ ├── stm32f10x_rtc.c
│ │ │ ├── stm32f10x_sdio.c
│ │ │ ├── stm32f10x_spi.c
│ │ │ ├── stm32f10x_tim.c
│ │ │ ├── stm32f10x_usart.c
│ │ │ └── stm32f10x_wwdg.c
│ │ └── Project
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── MDK-ARM
│ │ │ ├── DebugConfig
│ │ │ │ └── RTC_STM32F103C8_1.0.0.dbgconf
│ │ │ ├── JLinkLog.txt
│ │ │ ├── JLinkSettings.ini
│ │ │ ├── Nu_Link_Driver.ini
│ │ │ ├── obj
│ │ │ │ ├── 24cxx.crf
│ │ │ │ ├── 24cxx.d
│ │ │ │ ├── 24cxx.o
│ │ │ │ ├── asr.crf
│ │ │ │ ├── asr.d
│ │ │ │ ├── asr.o
│ │ │ │ ├── beep_relay.crf
│ │ │ │ ├── beep_relay.d
│ │ │ │ ├── beep_relay.o
│ │ │ │ ├── delay.crf
│ │ │ │ ├── delay.d
│ │ │ │ ├── delay.o
│ │ │ │ ├── ExtDll.iex
│ │ │ │ ├── key4x4.crf
│ │ │ │ ├── key4x4.d
│ │ │ │ ├── key4x4.o
│ │ │ │ ├── ld3320.crf
│ │ │ │ ├── ld3320.d
│ │ │ │ ├── ld3320.o
│ │ │ │ ├── led.crf
│ │ │ │ ├── led.d
│ │ │ │ ├── led.o
│ │ │ │ ├── main.crf
│ │ │ │ ├── main.d
│ │ │ │ ├── main.o
│ │ │ │ ├── misc.crf
│ │ │ │ ├── misc.d
│ │ │ │ ├── misc.o
│ │ │ │ ├── myiic.crf
│ │ │ │ ├── myiic.d
│ │ │ │ ├── myiic.o
│ │ │ │ ├── oled.crf
│ │ │ │ ├── oled.d
│ │ │ │ ├── oled.o
│ │ │ │ ├── RTC_RTC.dep
│ │ │ │ ├── rtc_time.crf
│ │ │ │ ├── rtc_time.d
│ │ │ │ ├── rtc_time.o
│ │ │ │ ├── spi2.crf
│ │ │ │ ├── spi2.d
│ │ │ │ ├── spi2.o
│ │ │ │ ├── startup_stm32f10x_md.d
│ │ │ │ ├── startup_stm32f10x_md.o
│ │ │ │ ├── stm32f10x_adc.crf
│ │ │ │ ├── stm32f10x_adc.d
│ │ │ │ ├── stm32f10x_adc.o
│ │ │ │ ├── stm32f10x_bkp.crf
│ │ │ │ ├── stm32f10x_bkp.d
│ │ │ │ ├── stm32f10x_bkp.o
│ │ │ │ ├── stm32f10x_can.crf
│ │ │ │ ├── stm32f10x_can.d
│ │ │ │ ├── stm32f10x_can.o
│ │ │ │ ├── stm32f10x_cec.crf
│ │ │ │ ├── stm32f10x_cec.d
│ │ │ │ ├── stm32f10x_cec.o
│ │ │ │ ├── stm32f10x_crc.crf
│ │ │ │ ├── stm32f10x_crc.d
│ │ │ │ ├── stm32f10x_crc.o
│ │ │ │ ├── stm32f10x_dac.crf
│ │ │ │ ├── stm32f10x_dac.d
│ │ │ │ ├── stm32f10x_dac.o
│ │ │ │ ├── stm32f10x_dbgmcu.crf
│ │ │ │ ├── stm32f10x_dbgmcu.d
│ │ │ │ ├── stm32f10x_dbgmcu.o
│ │ │ │ ├── stm32f10x_dma.crf
│ │ │ │ ├── stm32f10x_dma.d
│ │ │ │ ├── stm32f10x_dma.o
│ │ │ │ ├── stm32f10x_exti.crf
│ │ │ │ ├── stm32f10x_exti.d
│ │ │ │ ├── stm32f10x_exti.o
│ │ │ │ ├── stm32f10x_flash.crf
│ │ │ │ ├── stm32f10x_flash.d
│ │ │ │ ├── stm32f10x_flash.o
│ │ │ │ ├── stm32f10x_fsmc.crf
│ │ │ │ ├── stm32f10x_fsmc.d
│ │ │ │ ├── stm32f10x_fsmc.o
│ │ │ │ ├── stm32f10x_gpio.crf
│ │ │ │ ├── stm32f10x_gpio.d
│ │ │ │ ├── stm32f10x_gpio.o
│ │ │ │ ├── stm32f10x_i2c.crf
│ │ │ │ ├── stm32f10x_i2c.d
│ │ │ │ ├── stm32f10x_i2c.o
│ │ │ │ ├── stm32f10x_it.crf
│ │ │ │ ├── stm32f10x_it.d
│ │ │ │ ├── stm32f10x_it.o
│ │ │ │ ├── stm32f10x_iwdg.crf
│ │ │ │ ├── stm32f10x_iwdg.d
│ │ │ │ ├── stm32f10x_iwdg.o
│ │ │ │ ├── stm32f10x_pwr.crf
│ │ │ │ ├── stm32f10x_pwr.d
│ │ │ │ ├── stm32f10x_pwr.o
│ │ │ │ ├── stm32f10x_rcc.crf
│ │ │ │ ├── stm32f10x_rcc.d
│ │ │ │ ├── stm32f10x_rcc.o
│ │ │ │ ├── stm32f10x_rtc.crf
│ │ │ │ ├── stm32f10x_rtc.d
│ │ │ │ ├── stm32f10x_rtc.o
│ │ │ │ ├── stm32f10x_sdio.crf
│ │ │ │ ├── stm32f10x_sdio.d
│ │ │ │ ├── stm32f10x_sdio.o
│ │ │ │ ├── stm32f10x_spi.crf
│ │ │ │ ├── stm32f10x_spi.d
│ │ │ │ ├── stm32f10x_spi.o
│ │ │ │ ├── stm32f10x_tim.crf
│ │ │ │ ├── stm32f10x_tim.d
│ │ │ │ ├── stm32f10x_tim.o
│ │ │ │ ├── stm32f10x_usart.crf
│ │ │ │ ├── stm32f10x_usart.d
│ │ │ │ ├── stm32f10x_usart.o
│ │ │ │ ├── stm32f10x_wwdg.crf
│ │ │ │ ├── stm32f10x_wwdg.d
│ │ │ │ ├── stm32f10x_wwdg.o
│ │ │ │ ├── sys.crf
│ │ │ │ ├── sys.d
│ │ │ │ ├── sys.o
│ │ │ │ ├── system_stm32f10x.crf
│ │ │ │ ├── system_stm32f10x.d
│ │ │ │ ├── system_stm32f10x.o
│ │ │ │ ├── usart.crf
│ │ │ │ ├── usart.d
│ │ │ │ ├── usart.o
│ │ │ │ ├── YD_DEMO.axf
│ │ │ │ ├── YD_DEMO.build_log.htm
│ │ │ │ ├── YD_DEMO.hex
│ │ │ │ ├── YD_DEMO.htm
│ │ │ │ ├── YD_DEMO.lnp
│ │ │ │ └── YD_DEMO.sct
│ │ │ ├── RTC.uvgui.song8023
│ │ │ ├── RTC.uvguix.song8023
│ │ │ ├── RTC.uvopt
│ │ │ ├── RTC.uvoptx
│ │ │ ├── RTC.uvprojx
│ │ │ ├── startup_stm32f10x_md.lst
│ │ │ └── YD_DEMO.map
│ │ ├── stm32f10x_conf.h
│ │ ├── stm32f10x_it.c
│ │ └── stm32f10x_it.h
│ ├── Passward.zip
│ ├── 例程
│ │ ├── 1f3a660492750934a3821e33b8d51f07
│ │ │ └── 扫码支付模块
│ │ │ ├── 支付底层程序测试
│ │ │ │ └── STM32F103C8T6
│ │ │ │ ├── Core
│ │ │ │ │ ├── core_cm3.c
│ │ │ │ │ ├── core_cm3.h
│ │ │ │ │ └── startup_stm32f10x_md.s
│ │ │ │ ├── Object
│ │ │ │ ├── STM32_lib
│ │ │ │ │ ├── inc
│ │ │ │ │ │ ├── misc.h
│ │ │ │ │ │ ├── stm32f10x_adc.h
│ │ │ │ │ │ ├── stm32f10x_bkp.h
│ │ │ │ │ │ ├── stm32f10x_can.h
│ │ │ │ │ │ ├── stm32f10x_cec.h
│ │ │ │ │ │ ├── stm32f10x_crc.h
│ │ │ │ │ │ ├── stm32f10x_dac.h
│ │ │ │ │ │ ├── stm32f10x_dbgmcu.h
│ │ │ │ │ │ ├── stm32f10x_dma.h
│ │ │ │ │ │ ├── stm32f10x_exti.h
│ │ │ │ │ │ ├── stm32f10x_flash.h
│ │ │ │ │ │ ├── stm32f10x_fsmc.h
│ │ │ │ │ │ ├── stm32f10x_gpio.h
│ │ │ │ │ │ ├── stm32f10x_i2c.h
│ │ │ │ │ │ ├── stm32f10x_iwdg.h
│ │ │ │ │ │ ├── stm32f10x_pwr.h
│ │ │ │ │ │ ├── stm32f10x_rcc.h
│ │ │ │ │ │ ├── stm32f10x_rtc.h
│ │ │ │ │ │ ├── stm32f10x_sdio.h
│ │ │ │ │ │ ├── stm32f10x_spi.h
│ │ │ │ │ │ ├── stm32f10x_tim.h
│ │ │ │ │ │ ├── stm32f10x_usart.h
│ │ │ │ │ │ └── stm32f10x_wwdg.h
│ │ │ │ │ ├── src
│ │ │ │ │ │ ├── misc.c
│ │ │ │ │ │ ├── stm32f10x_adc.c
│ │ │ │ │ │ ├── stm32f10x_bkp.c
│ │ │ │ │ │ ├── stm32f10x_can.c
│ │ │ │ │ │ ├── stm32f10x_cec.c
│ │ │ │ │ │ ├── stm32f10x_crc.c
│ │ │ │ │ │ ├── stm32f10x_dac.c
│ │ │ │ │ │ ├── stm32f10x_dbgmcu.c
│ │ │ │ │ │ ├── stm32f10x_dma.c
│ │ │ │ │ │ ├── stm32f10x_exti.c
│ │ │ │ │ │ ├── stm32f10x_flash.c
│ │ │ │ │ │ ├── stm32f10x_fsmc.c
│ │ │ │ │ │ ├── stm32f10x_gpio.c
│ │ │ │ │ │ ├── stm32f10x_i2c.c
│ │ │ │ │ │ ├── stm32f10x_iwdg.c
│ │ │ │ │ │ ├── stm32f10x_pwr.c
│ │ │ │ │ │ ├── stm32f10x_rcc.c
│ │ │ │ │ │ ├── stm32f10x_rtc.c
│ │ │ │ │ │ ├── stm32f10x_sdio.c
│ │ │ │ │ │ ├── stm32f10x_spi.c
│ │ │ │ │ │ ├── stm32f10x_tim.c
│ │ │ │ │ │ ├── stm32f10x_usart.c
│ │ │ │ │ │ └── stm32f10x_wwdg.c
│ │ │ │ │ ├── stm32f10x_conf.h
│ │ │ │ │ ├── stm32f10x.h
│ │ │ │ │ ├── stm32f10x_it.c
│ │ │ │ │ ├── stm32f10x_it.h
│ │ │ │ │ ├── system_stm32f10x.c
│ │ │ │ │ └── system_stm32f10x.h
│ │ │ │ └── User
│ │ │ │ ├── CH375.c
│ │ │ │ ├── CH375.h
│ │ │ │ ├── Control.c
│ │ │ │ ├── Control.h
│ │ │ │ ├── DebugConfig
│ │ │ │ │ ├── Target_1_STM32F103VE.dbgconf
│ │ │ │ │ ├── User_STM32F103C8_1.0.0.dbgconf
│ │ │ │ │ ├── User_STM32F103C8.dbgconf
│ │ │ │ │ └── User_STM32F103VE.dbgconf
│ │ │ │ ├── Detect.c
│ │ │ │ ├── Detect.h
│ │ │ │ ├── IIC.c
│ │ │ │ ├── IIC.h
│ │ │ │ ├── JLinkLog.txt
│ │ │ │ ├── JLinkSettings.ini
│ │ │ │ ├── Listings
│ │ │ │ │ ├── startup_stm32f10x_hd.lst
│ │ │ │ │ ├── startup_stm32f10x_md.lst
│ │ │ │ │ └── USER.map
│ │ │ │ ├── main.c
│ │ │ │ ├── main.h
│ │ │ │ ├── Objects
│ │ │ │ │ ├── ch375.crf
│ │ │ │ │ ├── ch375.d
│ │ │ │ │ ├── ch375.o
│ │ │ │ │ ├── control.crf
│ │ │ │ │ ├── control.d
│ │ │ │ │ ├── control.o
│ │ │ │ │ ├── core_cm3.crf
│ │ │ │ │ ├── core_cm3.d
│ │ │ │ │ ├── core_cm3.o
│ │ │ │ │ ├── detect.crf
│ │ │ │ │ ├── detect.d
│ │ │ │ │ ├── detect.o
│ │ │ │ │ ├── ExtDll.iex
│ │ │ │ │ ├── iic.crf
│ │ │ │ │ ├── iic.d
│ │ │ │ │ ├── iic.o
│ │ │ │ │ ├── main.crf
│ │ │ │ │ ├── main.d
│ │ │ │ │ ├── main.o
│ │ │ │ │ ├── misc.crf
│ │ │ │ │ ├── misc.d
│ │ │ │ │ ├── misc.o
│ │ │ │ │ ├── startup_stm32f10x_hd.d
│ │ │ │ │ ├── startup_stm32f10x_hd.o
│ │ │ │ │ ├── startup_stm32f10x_md.d
│ │ │ │ │ ├── startup_stm32f10x_md.o
│ │ │ │ │ ├── stm32f10x_adc.crf
│ │ │ │ │ ├── stm32f10x_adc.d
│ │ │ │ │ ├── stm32f10x_adc.o
│ │ │ │ │ ├── stm32f10x_flash.crf
│ │ │ │ │ ├── stm32f10x_flash.d
│ │ │ │ │ ├── stm32f10x_flash.o
│ │ │ │ │ ├── stm32f10x_gpio.crf
│ │ │ │ │ ├── stm32f10x_gpio.d
│ │ │ │ │ ├── stm32f10x_gpio.o
│ │ │ │ │ ├── stm32f10x_it.crf
│ │ │ │ │ ├── stm32f10x_it.d
│ │ │ │ │ ├── stm32f10x_it.o
│ │ │ │ │ ├── stm32f10x_rcc.crf
│ │ │ │ │ ├── stm32f10x_rcc.d
│ │ │ │ │ ├── stm32f10x_rcc.o
│ │ │ │ │ ├── stm32f10x_tim.crf
│ │ │ │ │ ├── stm32f10x_tim.d
│ │ │ │ │ ├── stm32f10x_tim.o
│ │ │ │ │ ├── stm32f10x_usart.crf
│ │ │ │ │ ├── stm32f10x_usart.d
│ │ │ │ │ ├── stm32f10x_usart.o
│ │ │ │ │ ├── system_stm32f10x.crf
│ │ │ │ │ ├── system_stm32f10x.d
│ │ │ │ │ ├── system_stm32f10x.o
│ │ │ │ │ ├── systick.crf
│ │ │ │ │ ├── systick.d
│ │ │ │ │ ├── systick.o
│ │ │ │ │ ├── time.crf
│ │ │ │ │ ├── time.d
│ │ │ │ │ ├── time.o
│ │ │ │ │ ├── usart.crf
│ │ │ │ │ ├── usart.d
│ │ │ │ │ ├── usart.o
│ │ │ │ │ ├── USER.axf
│ │ │ │ │ ├── USER.build_log.htm
│ │ │ │ │ ├── USER.hex
│ │ │ │ │ ├── USER.htm
│ │ │ │ │ ├── USER.lnp
│ │ │ │ │ ├── USER.sct
│ │ │ │ │ ├── USER_sct.Bak
│ │ │ │ │ └── USER_User.dep
│ │ │ │ ├── SysTick.c
│ │ │ │ ├── SysTick.h
│ │ │ │ ├── Time.c
│ │ │ │ ├── Time.h
│ │ │ │ ├── USART.c
│ │ │ │ ├── USART.h
│ │ │ │ ├── USER.uvguix.Administrator
│ │ │ │ ├── USER.uvguix.MC
│ │ │ │ ├── USER.uvguix.song8023
│ │ │ │ ├── USER.uvoptx
│ │ │ │ └── USER.uvprojx
│ │ │ └── 维码器串口对接协议20170301.pdf
│ │ ├── 73462655ATK-QR
│ │ │ └── 21,ATK-QR 二维码&条形码识别库
│ │ │ ├── 1,ATK_QR 二维码&条形码识别库
│ │ │ │ ├── atk_qrdecode.c
│ │ │ │ ├── atk_qrdecode.h
│ │ │ │ ├── ATK_QR_V1.4.lib
│ │ │ │ └── readme.txt
│ │ │ ├── 2,程序源码
│ │ │ │ ├── (HAL库版,适合阿波罗F429开发板)扩展实验SE01 ATK-QR二维码、条形码识别实验.rar
│ │ │ │ ├── (HAL库版,适合阿波罗F767开发板)扩展实验SE01 ATK-QR二维码、条形码识别实验.zip
│ │ │ │ ├── readme.txt
│ │ │ │ ├── (寄存器版,适合探索者F407开发板)扩展实验SE01 ATK-QR二维码、条形码识别实验.rar
│ │ │ │ ├── (寄存器版,适合阿波罗F429开发板)扩展实验SE01 ATK-QR二维码、条形码识别实验.rar
│ │ │ │ ├── (寄存器版,适合阿波罗F767开发板)扩展实验SE01 ATK-QR二维码、条形码识别实验.zip
│ │ │ │ └── (标准库版,适合探索者F407开发板)扩展实验SE01 ATK-QR二维码、条形码识别实验.rar
│ │ │ ├── 3,二维码识别参考资料
│ │ │ │ ├── QRCode-编码解码标准.pdf
│ │ │ │ └── 二维条码的编解码及系统实现.pdf
│ │ │ ├── ATK-QR二维码&条码识别库使用说明(探索者F407版)_AN1616A.pdf
│ │ │ ├── ATK-QR二维码&条码识别库使用说明(阿波罗F429版)_AN1616B.pdf
│ │ │ └── ATK-QR二维码&条码识别库使用说明(阿波罗F767版)_AN1616C.pdf
│ │ └── 7941913SE01-ATK-QR
│ │ └── (标准库版,适合探索者F407开发板)扩展实验SE01 ATK-QR二维码、条形码识别实验
│ │ ├── ATKQR
│ │ │ ├── atk_qrdecode.c
│ │ │ ├── atk_qrdecode.h
│ │ │ └── ATK_QR_V1.4.lib
│ │ ├── CORE
│ │ │ ├── core_cm4.h
│ │ │ ├── core_cm4_simd.h
│ │ │ ├── core_cmFunc.h
│ │ │ ├── core_cmInstr.h
│ │ │ └── startup_stm32f40_41xxx.s
│ │ ├── FATFS
│ │ │ ├── doc
│ │ │ │ ├── css_e.css
│ │ │ │ ├── css_j.css
│ │ │ │ ├── en
│ │ │ │ ├── img
│ │ │ │ │ ├── app1.c
│ │ │ │ │ ├── app2.c
│ │ │ │ │ ├── app3.c
│ │ │ │ │ ├── app4.c
│ │ │ │ │ ├── f1.png
│ │ │ │ │ ├── f2.png
│ │ │ │ │ ├── f3.png
│ │ │ │ │ ├── f4.png
│ │ │ │ │ ├── f5.png
│ │ │ │ │ ├── f6.png
│ │ │ │ │ ├── f7.png
│ │ │ │ │ ├── funcs.png
│ │ │ │ │ ├── layers3.png
│ │ │ │ │ ├── layers.png
│ │ │ │ │ ├── modules.png
│ │ │ │ │ ├── rwtest2.png
│ │ │ │ │ ├── rwtest3.png
│ │ │ │ │ └── rwtest.png
│ │ │ │ ├── ja
│ │ │ │ └── updates.txt
│ │ │ ├── exfuns
│ │ │ │ ├── exfuns.c
│ │ │ │ ├── exfuns.h
│ │ │ │ ├── fattester.c
│ │ │ │ ├── fattester.h
│ │ │ │ └── mycc936.c
│ │ │ └── src
│ │ │ ├── 00readme.txt
│ │ │ ├── diskio.c
│ │ │ ├── diskio.h
│ │ │ ├── ff.c
│ │ │ ├── ffconf.h
│ │ │ ├── ff.h
│ │ │ ├── integer.h
│ │ │ └── option
│ │ │ ├── cc932.c
│ │ │ ├── cc936.c
│ │ │ ├── cc949.c
│ │ │ ├── cc950.c
│ │ │ ├── ccsbcs.c
│ │ │ ├── syscall.c
│ │ │ └── unicode.c
│ │ ├── FWLIB
│ │ │ ├── inc
│ │ │ │ ├── misc.h
│ │ │ │ ├── stm32f4xx_adc.h
│ │ │ │ ├── stm32f4xx_can.h
│ │ │ │ ├── stm32f4xx_crc.h
│ │ │ │ ├── stm32f4xx_cryp.h
│ │ │ │ ├── stm32f4xx_dac.h
│ │ │ │ ├── stm32f4xx_dbgmcu.h
│ │ │ │ ├── stm32f4xx_dcmi.h
│ │ │ │ ├── stm32f4xx_dma2d.h
│ │ │ │ ├── stm32f4xx_dma.h
│ │ │ │ ├── stm32f4xx_exti.h
│ │ │ │ ├── stm32f4xx_flash.h
│ │ │ │ ├── stm32f4xx_flash_ramfunc.h
│ │ │ │ ├── stm32f4xx_fmc.h
│ │ │ │ ├── stm32f4xx_fsmc.h
│ │ │ │ ├── stm32f4xx_gpio.h
│ │ │ │ ├── stm32f4xx_hash.h
│ │ │ │ ├── stm32f4xx_i2c.h
│ │ │ │ ├── stm32f4xx_iwdg.h
│ │ │ │ ├── stm32f4xx_ltdc.h
│ │ │ │ ├── stm32f4xx_pwr.h
│ │ │ │ ├── stm32f4xx_rcc.h
│ │ │ │ ├── stm32f4xx_rng.h
│ │ │ │ ├── stm32f4xx_rtc.h
│ │ │ │ ├── stm32f4xx_sai.h
│ │ │ │ ├── stm32f4xx_sdio.h
│ │ │ │ ├── stm32f4xx_spi.h
│ │ │ │ ├── stm32f4xx_syscfg.h
│ │ │ │ ├── stm32f4xx_tim.h
│ │ │ │ ├── stm32f4xx_usart.h
│ │ │ │ └── stm32f4xx_wwdg.h
│ │ │ └── src
│ │ │ ├── misc.c
│ │ │ ├── stm32f4xx_adc.c
│ │ │ ├── stm32f4xx_can.c
│ │ │ ├── stm32f4xx_crc.c
│ │ │ ├── stm32f4xx_cryp_aes.c
│ │ │ ├── stm32f4xx_cryp.c
│ │ │ ├── stm32f4xx_cryp_des.c
│ │ │ ├── stm32f4xx_cryp_tdes.c
│ │ │ ├── stm32f4xx_dac.c
│ │ │ ├── stm32f4xx_dbgmcu.c
│ │ │ ├── stm32f4xx_dcmi.c
│ │ │ ├── stm32f4xx_dma2d.c
│ │ │ ├── stm32f4xx_dma.c
│ │ │ ├── stm32f4xx_exti.c
│ │ │ ├── stm32f4xx_flash.c
│ │ │ ├── stm32f4xx_flash_ramfunc.c
│ │ │ ├── stm32f4xx_fmc.c
│ │ │ ├── stm32f4xx_fsmc.c
│ │ │ ├── stm32f4xx_gpio.c
│ │ │ ├── stm32f4xx_hash.c
│ │ │ ├── stm32f4xx_hash_md5.c
│ │ │ ├── stm32f4xx_hash_sha1.c
│ │ │ ├── stm32f4xx_i2c.c
│ │ │ ├── stm32f4xx_iwdg.c
│ │ │ ├── stm32f4xx_ltdc.c
│ │ │ ├── stm32f4xx_pwr.c
│ │ │ ├── stm32f4xx_rcc.c
│ │ │ ├── stm32f4xx_rng.c
│ │ │ ├── stm32f4xx_rtc.c
│ │ │ ├── stm32f4xx_sai.c
│ │ │ ├── stm32f4xx_sdio.c
│ │ │ ├── stm32f4xx_spi.c
│ │ │ ├── stm32f4xx_syscfg.c
│ │ │ ├── stm32f4xx_tim.c
│ │ │ ├── stm32f4xx_usart.c
│ │ │ └── stm32f4xx_wwdg.c
│ │ ├── HARDWARE
│ │ │ ├── BEEP
│ │ │ │ ├── beep.c
│ │ │ │ └── beep.h
│ │ │ ├── DCMI
│ │ │ │ ├── dcmi.c
│ │ │ │ └── dcmi.h
│ │ │ ├── KEY
│ │ │ │ ├── key.c
│ │ │ │ └── key.h
│ │ │ ├── LCD
│ │ │ │ ├── FONT.H
│ │ │ │ ├── lcd.c
│ │ │ │ └── lcd.h
│ │ │ ├── LED
│ │ │ │ ├── led.c
│ │ │ │ └── led.h
│ │ │ ├── OV2640
│ │ │ │ ├── ov2640.c
│ │ │ │ ├── ov2640cfg.h
│ │ │ │ ├── ov2640.h
│ │ │ │ ├── sccb.c
│ │ │ │ └── sccb.h
│ │ │ ├── SDIO
│ │ │ │ ├── sdio_sdcard.c
│ │ │ │ └── sdio_sdcard.h
│ │ │ ├── SPI
│ │ │ │ ├── spi.c
│ │ │ │ └── spi.h
│ │ │ ├── SRAM
│ │ │ │ ├── sram.c
│ │ │ │ └── sram.h
│ │ │ ├── TIMER
│ │ │ │ ├── timer.c
│ │ │ │ └── timer.h
│ │ │ ├── USART2
│ │ │ │ ├── usart2.c
│ │ │ │ └── usart2.h
│ │ │ └── W25QXX
│ │ │ ├── w25qxx.c
│ │ │ └── w25qxx.h
│ │ ├── keilkilll.bat
│ │ ├── MALLOC
│ │ │ ├── malloc.c
│ │ │ └── malloc.h
│ │ ├── OBJ
│ │ │ └── ATKQRReader.hex
│ │ ├── readme.txt
│ │ ├── SYSTEM
│ │ │ ├── delay
│ │ │ │ ├── delay.c
│ │ │ │ └── delay.h
│ │ │ ├── sys
│ │ │ │ ├── sys.c
│ │ │ │ └── sys.h
│ │ │ └── usart
│ │ │ ├── usart.c
│ │ │ └── usart.h
│ │ ├── TEXT
│ │ │ ├── fontupd.c
│ │ │ ├── fontupd.h
│ │ │ ├── text.c
│ │ │ └── text.h
│ │ └── USER
│ │ ├── ATKQR_DECODE.uvguix.Administrator
│ │ ├── ATKQR_DECODE.uvoptx
│ │ ├── ATKQR_DECODE.uvprojx
│ │ ├── DebugConfig
│ │ │ ├── ATKQR_DECODE_STM32F407ZG.dbgconf
│ │ │ ├── OV2640_STM32F407ZG.dbgconf
│ │ │ └── QRReader_STM32F407ZG.dbgconf
│ │ ├── JLinkSettings.ini
│ │ ├── main.c
│ │ ├── RTE
│ │ │ └── RTE_Components.h
│ │ ├── stm32f4xx_conf.h
│ │ ├── stm32f4xx.h
│ │ ├── stm32f4xx_it.c
│ │ ├── stm32f4xx_it.h
│ │ ├── system_stm32f4xx.c
│ │ └── system_stm32f4xx.h
│ ├── 初始密码写入
│ │ ├── BSP
│ │ │ ├── 24CXX
│ │ │ │ ├── 24cxx.c
│ │ │ │ └── 24cxx.h
│ │ │ ├── 4X4
│ │ │ │ ├── key4x4.c
│ │ │ │ └── key4x4.h
│ │ │ ├── BEEP_RELAY
│ │ │ │ ├── beep_relay.c
│ │ │ │ └── beep_relay.h
│ │ │ ├── delay.c
│ │ │ ├── delay.h
│ │ │ ├── IIC
│ │ │ │ ├── myiic.c
│ │ │ │ └── myiic.h
│ │ │ ├── led.c
│ │ │ ├── led.h
│ │ │ ├── OLED
│ │ │ │ ├── bmp.h
│ │ │ │ ├── oled.c
│ │ │ │ ├── oledfont.h
│ │ │ │ ├── oledfont.h~RF6761e0a.TMP
│ │ │ │ ├── oled.h
│ │ │ │ ├── 请输入密码:_index.TXT
│ │ │ │ └── 请输入密码:.TXT
│ │ │ ├── RTC_Time.c
│ │ │ ├── RTC_Time.h
│ │ │ ├── sys.c
│ │ │ ├── sys.h
│ │ │ ├── usart.c
│ │ │ └── usart.h
│ │ ├── config
│ │ │ ├── stm32f10x_flash_extsram.icf
│ │ │ ├── stm32f10x_flash.icf
│ │ │ ├── stm32f10x_nor.icf
│ │ │ └── stm32f10x_ram.icf
│ │ ├── doc
│ │ │ └── readme.txt
│ │ ├── Libraries
│ │ │ ├── CMSIS
│ │ │ │ ├── CM3
│ │ │ │ │ ├── CoreSupport
│ │ │ │ │ │ ├── core_cm3.c
│ │ │ │ │ │ └── core_cm3.h
│ │ │ │ │ └── DeviceSupport
│ │ │ │ │ └── ST
│ │ │ │ │ └── STM32F10x
│ │ │ │ │ ├── Release_Notes.html
│ │ │ │ │ ├── startup
│ │ │ │ │ │ ├── arm
│ │ │ │ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s
│ │ │ │ │ │ │ └── startup_stm32f10x_xl.s
│ │ │ │ │ │ ├── gcc_ride7
│ │ │ │ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s
│ │ │ │ │ │ │ └── startup_stm32f10x_xl.s
│ │ │ │ │ │ ├── iar
│ │ │ │ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s
│ │ │ │ │ │ │ └── startup_stm32f10x_xl.s
│ │ │ │ │ │ └── TrueSTUDIO
│ │ │ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s
│ │ │ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s
│ │ │ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s
│ │ │ │ │ │ └── startup_stm32f10x_xl.s
│ │ │ │ │ ├── stm32f10x.h
│ │ │ │ │ ├── system_stm32f10x.c
│ │ │ │ │ └── system_stm32f10x.h
│ │ │ │ ├── CMSIS_changes.htm
│ │ │ │ ├── CMSIS debug support.htm
│ │ │ │ ├── Documentation
│ │ │ │ │ └── CMSIS_Core.htm
│ │ │ │ └── License.doc
│ │ │ └── STM32F10x_StdPeriph_Driver
│ │ │ ├── inc
│ │ │ │ ├── misc.h
│ │ │ │ ├── stm32f10x_adc.h
│ │ │ │ ├── stm32f10x_bkp.h
│ │ │ │ ├── stm32f10x_can.h
│ │ │ │ ├── stm32f10x_cec.h
│ │ │ │ ├── stm32f10x_conf.h
│ │ │ │ ├── stm32f10x_crc.h
│ │ │ │ ├── stm32f10x_dac.h
│ │ │ │ ├── stm32f10x_dbgmcu.h
│ │ │ │ ├── stm32f10x_dma.h
│ │ │ │ ├── stm32f10x_exti.h
│ │ │ │ ├── stm32f10x_flash.h
│ │ │ │ ├── stm32f10x_fsmc.h
│ │ │ │ ├── stm32f10x_gpio.h
│ │ │ │ ├── stm32f10x_i2c.h
│ │ │ │ ├── stm32f10x_iwdg.h
│ │ │ │ ├── stm32f10x_pwr.h
│ │ │ │ ├── stm32f10x_rcc.h
│ │ │ │ ├── stm32f10x_rtc.h
│ │ │ │ ├── stm32f10x_sdio.h
│ │ │ │ ├── stm32f10x_spi.h
│ │ │ │ ├── stm32f10x_tim.h
│ │ │ │ ├── stm32f10x_usart.h
│ │ │ │ ├── stm32f10x_wwdg.h
│ │ │ │ └── usrbool.h
│ │ │ ├── Release_Notes.html
│ │ │ └── src
│ │ │ ├── misc.c
│ │ │ ├── stm32f10x_adc.c
│ │ │ ├── stm32f10x_bkp.c
│ │ │ ├── stm32f10x_can.c
│ │ │ ├── stm32f10x_cec.c
│ │ │ ├── stm32f10x_crc.c
│ │ │ ├── stm32f10x_dac.c
│ │ │ ├── stm32f10x_dbgmcu.c
│ │ │ ├── stm32f10x_dma.c
│ │ │ ├── stm32f10x_exti.c
│ │ │ ├── stm32f10x_flash.c
│ │ │ ├── stm32f10x_fsmc.c
│ │ │ ├── stm32f10x_gpio.c
│ │ │ ├── stm32f10x_i2c.c
│ │ │ ├── stm32f10x_iwdg.c
│ │ │ ├── stm32f10x_pwr.c
│ │ │ ├── stm32f10x_rcc.c
│ │ │ ├── stm32f10x_rtc.c
│ │ │ ├── stm32f10x_sdio.c
│ │ │ ├── stm32f10x_spi.c
│ │ │ ├── stm32f10x_tim.c
│ │ │ ├── stm32f10x_usart.c
│ │ │ └── stm32f10x_wwdg.c
│ │ └── Project
│ │ ├── main.c
│ │ ├── MDK-ARM
│ │ │ ├── DebugConfig
│ │ │ │ └── RTC_STM32F103C8_1.0.0.dbgconf
│ │ │ ├── JLinkLog.txt
│ │ │ ├── JLinkSettings.ini
│ │ │ ├── Nu_Link_Driver.ini
│ │ │ ├── obj
│ │ │ │ ├── 24cxx.crf
│ │ │ │ ├── 24cxx.d
│ │ │ │ ├── 24cxx.o
│ │ │ │ ├── beep_relay.crf
│ │ │ │ ├── beep_relay.d
│ │ │ │ ├── beep_relay.o
│ │ │ │ ├── delay.crf
│ │ │ │ ├── delay.d
│ │ │ │ ├── delay.o
│ │ │ │ ├── ExtDll.iex
│ │ │ │ ├── key4x4.crf
│ │ │ │ ├── key4x4.d
│ │ │ │ ├── key4x4.o
│ │ │ │ ├── led.crf
│ │ │ │ ├── led.d
│ │ │ │ ├── led.o
│ │ │ │ ├── main.crf
│ │ │ │ ├── main.d
│ │ │ │ ├── main.o
│ │ │ │ ├── misc.crf
│ │ │ │ ├── misc.d
│ │ │ │ ├── misc.o
│ │ │ │ ├── myiic.crf
│ │ │ │ ├── myiic.d
│ │ │ │ ├── myiic.o
│ │ │ │ ├── oled.crf
│ │ │ │ ├── oled.d
│ │ │ │ ├── oled.o
│ │ │ │ ├── RTC_RTC.dep
│ │ │ │ ├── rtc_time.crf
│ │ │ │ ├── rtc_time.d
│ │ │ │ ├── rtc_time.o
│ │ │ │ ├── startup_stm32f10x_md.d
│ │ │ │ ├── startup_stm32f10x_md.o
│ │ │ │ ├── stm32f10x_adc.crf
│ │ │ │ ├── stm32f10x_adc.d
│ │ │ │ ├── stm32f10x_adc.o
│ │ │ │ ├── stm32f10x_bkp.crf
│ │ │ │ ├── stm32f10x_bkp.d
│ │ │ │ ├── stm32f10x_bkp.o
│ │ │ │ ├── stm32f10x_can.crf
│ │ │ │ ├── stm32f10x_can.d
│ │ │ │ ├── stm32f10x_can.o
│ │ │ │ ├── stm32f10x_cec.crf
│ │ │ │ ├── stm32f10x_cec.d
│ │ │ │ ├── stm32f10x_cec.o
│ │ │ │ ├── stm32f10x_crc.crf
│ │ │ │ ├── stm32f10x_crc.d
│ │ │ │ ├── stm32f10x_crc.o
│ │ │ │ ├── stm32f10x_dac.crf
│ │ │ │ ├── stm32f10x_dac.d
│ │ │ │ ├── stm32f10x_dac.o
│ │ │ │ ├── stm32f10x_dbgmcu.crf
│ │ │ │ ├── stm32f10x_dbgmcu.d
│ │ │ │ ├── stm32f10x_dbgmcu.o
│ │ │ │ ├── stm32f10x_dma.crf
│ │ │ │ ├── stm32f10x_dma.d
│ │ │ │ ├── stm32f10x_dma.o
│ │ │ │ ├── stm32f10x_exti.crf
│ │ │ │ ├── stm32f10x_exti.d
│ │ │ │ ├── stm32f10x_exti.o
│ │ │ │ ├── stm32f10x_flash.crf
│ │ │ │ ├── stm32f10x_flash.d
│ │ │ │ ├── stm32f10x_flash.o
│ │ │ │ ├── stm32f10x_fsmc.crf
│ │ │ │ ├── stm32f10x_fsmc.d
│ │ │ │ ├── stm32f10x_fsmc.o
│ │ │ │ ├── stm32f10x_gpio.crf
│ │ │ │ ├── stm32f10x_gpio.d
│ │ │ │ ├── stm32f10x_gpio.o
│ │ │ │ ├── stm32f10x_i2c.crf
│ │ │ │ ├── stm32f10x_i2c.d
│ │ │ │ ├── stm32f10x_i2c.o
│ │ │ │ ├── stm32f10x_it.crf
│ │ │ │ ├── stm32f10x_it.d
│ │ │ │ ├── stm32f10x_it.o
│ │ │ │ ├── stm32f10x_iwdg.crf
│ │ │ │ ├── stm32f10x_iwdg.d
│ │ │ │ ├── stm32f10x_iwdg.o
│ │ │ │ ├── stm32f10x_pwr.crf
│ │ │ │ ├── stm32f10x_pwr.d
│ │ │ │ ├── stm32f10x_pwr.o
│ │ │ │ ├── stm32f10x_rcc.crf
│ │ │ │ ├── stm32f10x_rcc.d
│ │ │ │ ├── stm32f10x_rcc.o
│ │ │ │ ├── stm32f10x_rtc.crf
│ │ │ │ ├── stm32f10x_rtc.d
│ │ │ │ ├── stm32f10x_rtc.o
│ │ │ │ ├── stm32f10x_sdio.crf
│ │ │ │ ├── stm32f10x_sdio.d
│ │ │ │ ├── stm32f10x_sdio.o
│ │ │ │ ├── stm32f10x_spi.crf
│ │ │ │ ├── stm32f10x_spi.d
│ │ │ │ ├── stm32f10x_spi.o
│ │ │ │ ├── stm32f10x_tim.crf
│ │ │ │ ├── stm32f10x_tim.d
│ │ │ │ ├── stm32f10x_tim.o
│ │ │ │ ├── stm32f10x_usart.crf
│ │ │ │ ├── stm32f10x_usart.d
│ │ │ │ ├── stm32f10x_usart.o
│ │ │ │ ├── stm32f10x_wwdg.crf
│ │ │ │ ├── stm32f10x_wwdg.d
│ │ │ │ ├── stm32f10x_wwdg.o
│ │ │ │ ├── sys.crf
│ │ │ │ ├── sys.d
│ │ │ │ ├── sys.o
│ │ │ │ ├── system_stm32f10x.crf
│ │ │ │ ├── system_stm32f10x.d
│ │ │ │ ├── system_stm32f10x.o
│ │ │ │ ├── usart.crf
│ │ │ │ ├── usart.d
│ │ │ │ ├── usart.o
│ │ │ │ ├── YD_DEMO.axf
│ │ │ │ ├── YD_DEMO.build_log.htm
│ │ │ │ ├── YD_DEMO.hex
│ │ │ │ ├── YD_DEMO.htm
│ │ │ │ ├── YD_DEMO.lnp
│ │ │ │ └── YD_DEMO.sct
│ │ │ ├── RTC.uvgui.song8023
│ │ │ ├── RTC.uvguix.song8023
│ │ │ ├── RTC.uvopt
│ │ │ ├── RTC.uvoptx
│ │ │ ├── RTC.uvprojx
│ │ │ ├── startup_stm32f10x_md.lst
│ │ │ └── YD_DEMO.map
│ │ ├── stm32f10x_conf.h
│ │ ├── stm32f10x_it.c
│ │ └── stm32f10x_it.h
│ ├── 初始密码写入.zip
│ ├── 功能说明
│ │ ├── 功能说明.txt
│ │ ├── 开题报告填写要求.docx
│ │ └── 开题报告示例.doc
│ ├── 原理图.pdf
│ ├── 开题报告_57307.docx
│ └── 电路图功能说明57307.doc
├── 联系.txt
├── 视频
│ └── video_20180602_103257.mp4
└── 需求
├── 开题报告填写要求.docx
└── 开题报告示例.doc
160 directories, 1155 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论