AD7606_FSMC FSMC例程(STM32F407)└── F4-029_AD7606数据采集模块例程
├── Doc
│ ├── F4-001_例程执行结果(串口打印信息的截图).PNG
│ ├── 例程说明(中文)-ok.txt
│ ├── 例程修改记录.txt
│ ├── 例程功能说明.txt
│ └── 开发环境说明.txt
├── Libraries
│ ├── CMSIS
│ │ ├── CMSIS END USER LICENCE AGREEMENT.pdf
│ │ ├── Device
│ │ │ └── ST
│ │ │ └── STM32F4xx
│ │ │ ├── Include
│ │ │ │ ├── arm_common_tables.h
│ │ │ │ ├── arm_math.h
│ │ │ │ ├── core_cm0.h
│ │ │ │ ├── core_cm3.h
│ │ │ │ ├── core_cm4.h
│ │ │ │ ├── core_cm4_simd.h
│ │ │ │ ├── core_cmFunc.h
│ │ │ │ ├── core_cmInstr.h
│ │ │ │ ├── stm32f4xx.h
│ │ │ │ └── system_stm32f4xx.h
│ │ │ ├── Release_Notes.html
│ │ │ └── Source
│ │ │ └── Templates
│ │ │ ├── TASKING
│ │ │ │ └── cstart_thumb2.asm
│ │ │ ├── TrueSTUDIO
│ │ │ │ └── startup_stm32f4xx.s
│ │ │ ├── arm
│ │ │ │ └── startup_stm32f4xx.s
│ │ │ ├── gcc_ride7
│ │ │ │ └── startup_stm32f4xx.s
│ │ │ ├── iar
│ │ │ │ └── startup_stm32f4xx.s
│ │ │ └── system_stm32f4xx.c
│ │ ├── Include
│ │ │ ├── arm_common_tables.h
│ │ │ ├── arm_math.h
│ │ │ ├── core_cm0.h
│ │ │ ├── core_cm3.h
│ │ │ ├── core_cm4.h
│ │ │ ├── core_cm4_simd.h
│ │ │ ├── core_cmFunc.h
│ │ │ └── core_cmInstr.h
│ │ ├── Lib
│ │ │ ├── ARM
│ │ │ │ ├── arm_cortexM4b_math.lib
│ │ │ │ ├── arm_cortexM4bf_math.lib
│ │ │ │ ├── arm_cortexM4l_math.lib
│ │ │ │ └── arm_cortexM4lf_math.lib
│ │ │ └── GCC
│ │ └── README.txt
│ ├── STM32F4xx_StdPeriph_Driver
│ │ ├── Release_Notes.html
│ │ ├── 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_dma.h
│ │ │ ├── stm32f4xx_exti.h
│ │ │ ├── stm32f4xx_flash.h
│ │ │ ├── stm32f4xx_fsmc.h
│ │ │ ├── stm32f4xx_gpio.h
│ │ │ ├── stm32f4xx_hash.h
│ │ │ ├── stm32f4xx_i2c.h
│ │ │ ├── stm32f4xx_iwdg.h
│ │ │ ├── stm32f4xx_pwr.h
│ │ │ ├── stm32f4xx_rcc.h
│ │ │ ├── stm32f4xx_rng.h
│ │ │ ├── stm32f4xx_rtc.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.c
│ │ ├── stm32f4xx_cryp_aes.c
│ │ ├── stm32f4xx_cryp_des.c
│ │ ├── stm32f4xx_cryp_tdes.c
│ │ ├── stm32f4xx_dac.c
│ │ ├── stm32f4xx_dbgmcu.c
│ │ ├── stm32f4xx_dcmi.c
│ │ ├── stm32f4xx_dma.c
│ │ ├── stm32f4xx_exti.c
│ │ ├── stm32f4xx_flash.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_pwr.c
│ │ ├── stm32f4xx_rcc.c
│ │ ├── stm32f4xx_rng.c
│ │ ├── stm32f4xx_rtc.c
│ │ ├── stm32f4xx_sdio.c
│ │ ├── stm32f4xx_spi.c
│ │ ├── stm32f4xx_syscfg.c
│ │ ├── stm32f4xx_tim.c
│ │ ├── stm32f4xx_usart.c
│ │ └── stm32f4xx_wwdg.c
│ ├── STM32_USB_Device_Library
│ │ ├── Class
│ │ │ ├── audio
│ │ │ │ ├── inc
│ │ │ │ │ ├── usbd_audio_core.h
│ │ │ │ │ └── usbd_audio_out_if.h
│ │ │ │ └── src
│ │ │ │ ├── usbd_audio_core.c
│ │ │ │ └── usbd_audio_out_if.c
│ │ │ ├── cdc
│ │ │ │ ├── inc
│ │ │ │ │ ├── usbd_cdc_core.h
│ │ │ │ │ └── usbd_cdc_if_template.h
│ │ │ │ └── src
│ │ │ │ ├── usbd_cdc_core.c
│ │ │ │ └── usbd_cdc_if_template.c
│ │ │ ├── dfu
│ │ │ │ ├── inc
│ │ │ │ │ ├── usbd_dfu_core.h
│ │ │ │ │ ├── usbd_dfu_mal.h
│ │ │ │ │ ├── usbd_flash_if.h
│ │ │ │ │ ├── usbd_mem_if_template.h
│ │ │ │ │ └── usbd_otp_if.h
│ │ │ │ └── src
│ │ │ │ ├── usbd_dfu_core.c
│ │ │ │ ├── usbd_dfu_mal.c
│ │ │ │ ├── usbd_flash_if.c
│ │ │ │ ├── usbd_mem_if_template.c
│ │ │ │ └── usbd_otp_if.c
│ │ │ ├── hid
│ │ │ │ ├── inc
│ │ │ │ │ └── usbd_hid_core.h
│ │ │ │ └── src
│ │ │ │ └── usbd_hid_core.c
│ │ │ └── msc
│ │ │ ├── inc
│ │ │ │ ├── usbd_msc_bot.h
│ │ │ │ ├── usbd_msc_core.h
│ │ │ │ ├── usbd_msc_data.h
│ │ │ │ ├── usbd_msc_mem.h
│ │ │ │ └── usbd_msc_scsi.h
│ │ │ └── src
│ │ │ ├── usbd_msc_bot.c
│ │ │ ├── usbd_msc_core.c
│ │ │ ├── usbd_msc_data.c
│ │ │ ├── usbd_msc_scsi.c
│ │ │ └── usbd_storage_template.c
│ │ ├── Core
│ │ │ ├── inc
│ │ │ │ ├── usbd_conf_template.h
│ │ │ │ ├── usbd_core.h
│ │ │ │ ├── usbd_def.h
│ │ │ │ ├── usbd_ioreq.h
│ │ │ │ ├── usbd_req.h
│ │ │ │ └── usbd_usr.h
│ │ │ └── src
│ │ │ ├── usbd_core.c
│ │ │ ├── usbd_ioreq.c
│ │ │ └── usbd_req.c
│ │ └── Release_Notes.html
│ ├── STM32_USB_HOST_Library
│ │ ├── Class
│ │ │ ├── HID
│ │ │ │ ├── inc
│ │ │ │ │ ├── usbh_hid_core.h
│ │ │ │ │ ├── usbh_hid_keybd.h
│ │ │ │ │ └── usbh_hid_mouse.h
│ │ │ │ └── src
│ │ │ │ ├── usbh_hid_core.c
│ │ │ │ ├── usbh_hid_keybd.c
│ │ │ │ └── usbh_hid_mouse.c
│ │ │ └── MSC
│ │ │ ├── inc
│ │ │ │ ├── usbh_msc_bot.h
│ │ │ │ ├── usbh_msc_core.h
│ │ │ │ └── usbh_msc_scsi.h
│ │ │ └── src
│ │ │ ├── usbh_msc_bot.c
│ │ │ ├── usbh_msc_core.c
│ │ │ ├── usbh_msc_fatfs.c
│ │ │ └── usbh_msc_scsi.c
│ │ ├── Core
│ │ │ ├── inc
│ │ │ │ ├── usbh_conf_template.h
│ │ │ │ ├── usbh_core.h
│ │ │ │ ├── usbh_def.h
│ │ │ │ ├── usbh_hcs.h
│ │ │ │ ├── usbh_ioreq.h
│ │ │ │ └── usbh_stdreq.h
│ │ │ └── src
│ │ │ ├── usbh_core.c
│ │ │ ├── usbh_hcs.c
│ │ │ ├── usbh_ioreq.c
│ │ │ └── usbh_stdreq.c
│ │ └── Release_Notes.html
│ ├── STM32_USB_OTG_Driver
│ │ ├── Release_Notes.html
│ │ ├── inc
│ │ │ ├── usb_bsp.h
│ │ │ ├── usb_conf_template.h
│ │ │ ├── usb_core.h
│ │ │ ├── usb_dcd.h
│ │ │ ├── usb_dcd_int.h
│ │ │ ├── usb_defines.h
│ │ │ ├── usb_hcd.h
│ │ │ ├── usb_hcd_int.h
│ │ │ ├── usb_otg.h
│ │ │ └── usb_regs.h
│ │ └── src
│ │ ├── usb_bsp_template.c
│ │ ├── usb_core.c
│ │ ├── usb_dcd.c
│ │ ├── usb_dcd_int.c
│ │ ├── usb_hcd.c
│ │ ├── usb_hcd_int.c
│ │ └── usb_otg.c
│ └── 说明.txt
├── Project
│ ├── EWARMv6
│ │ ├── Project.ewd
│ │ ├── Project.ewp
│ │ ├── project.eww
│ │ ├── stm32f4xx_flash.icf
│ │ ├── stm32f4xx_ram.icf
│ │ └── 说明.txt
│ ├── MDK-ARM(uV4)
│ │ ├── CopyHex_CpuRAM.bat
│ │ ├── CopyHex_Flash.bat
│ │ ├── CpuRAM.ini
│ │ ├── Flash
│ │ │ ├── List
│ │ │ │ ├── asc12.txt
│ │ │ │ ├── asc16.txt
│ │ │ │ ├── bsp.txt
│ │ │ │ ├── bsp_ad7606.txt
│ │ │ │ ├── bsp_key.txt
│ │ │ │ ├── bsp_spi_ad7606 .txt
│ │ │ │ ├── bsp_timer.txt
│ │ │ │ ├── bsp_uart_fifo.txt
│ │ │ │ ├── hz12.txt
│ │ │ │ ├── hz16.txt
│ │ │ │ ├── images.txt
│ │ │ │ ├── main.txt
│ │ │ │ ├── misc.txt
│ │ │ │ ├── stm32f4xx_assert.txt
│ │ │ │ ├── stm32f4xx_dcmi.txt
│ │ │ │ ├── stm32f4xx_dma.txt
│ │ │ │ ├── stm32f4xx_exti.txt
│ │ │ │ ├── stm32f4xx_fsmc.txt
│ │ │ │ ├── stm32f4xx_gpio.txt
│ │ │ │ ├── stm32f4xx_it.txt
│ │ │ │ ├── stm32f4xx_rcc.txt
│ │ │ │ ├── stm32f4xx_spi.txt
│ │ │ │ ├── stm32f4xx_syscfg.txt
│ │ │ │ ├── stm32f4xx_tim.txt
│ │ │ │ ├── stm32f4xx_usart.txt
│ │ │ │ └── system_stm32f4xx.txt
│ │ │ └── Obj
│ │ │ └── output.hex
│ │ ├── project.uvgui.acer0827
│ │ ├── project.uvgui.朱高阳
│ │ ├── project.uvopt
│ │ ├── project.uvproj
│ │ └── 说明.txt
│ ├── output(flash).hex
│ ├── output(ram).hex
│ └── 说明.txt
├── User
│ ├── bsp_stm32f4xx
│ │ ├── bsp.c
│ │ ├── bsp.h
│ │ ├── inc
│ │ │ ├── LCD_RA8875.h
│ │ │ ├── LCD_SPFD5420.h
│ │ │ ├── bsp_ad7606.h
│ │ │ ├── bsp_bh1750.h
│ │ │ ├── bsp_bmp085.h
│ │ │ ├── bsp_camera.h
│ │ │ ├── bsp_cpu_flash.h
│ │ │ ├── bsp_eeprom_24xx.h
│ │ │ ├── bsp_eth.h
│ │ │ ├── bsp_fsmc_sram.h
│ │ │ ├── bsp_gsm.h
│ │ │ ├── bsp_hmc5883l.h
│ │ │ ├── bsp_i2c_gpio.h
│ │ │ ├── bsp_key.h
│ │ │ ├── bsp_led.h
│ │ │ ├── bsp_mpu6050.h
│ │ │ ├── bsp_nand_flash.h
│ │ │ ├── bsp_nor_flash.h
│ │ │ ├── bsp_sdio_sd.h
│ │ │ ├── bsp_si4730.h
│ │ │ ├── bsp_spi_flash.h
│ │ │ ├── bsp_tft_lcd.h
│ │ │ ├── bsp_timer.h
│ │ │ ├── bsp_touch.h
│ │ │ ├── bsp_uart_fifo.h
│ │ │ └── bsp_wm8978.h
│ │ ├── src
│ │ │ ├── LCD_RA8875.c
│ │ │ ├── LCD_SPFD5420.c
│ │ │ ├── bsp_ad7606.c
│ │ │ ├── bsp_bh1750.c
│ │ │ ├── bsp_bmp085.c
│ │ │ ├── bsp_camera.c
│ │ │ ├── bsp_cpu_flash.c
│ │ │ ├── bsp_eeprom_24xx.c
│ │ │ ├── bsp_eth.c
│ │ │ ├── bsp_fsmc_sram.c
│ │ │ ├── bsp_gsm.c
│ │ │ ├── bsp_hmc5883l.c
│ │ │ ├── bsp_i2c_gpio.c
│ │ │ ├── bsp_key.c
│ │ │ ├── bsp_led.c
│ │ │ ├── bsp_mpu6050.c
│ │ │ ├── bsp_nand_flash.c
│ │ │ ├── bsp_nor_flash.c
│ │ │ ├── bsp_sdio_sd.c
│ │ │ ├── bsp_si4730.c
│ │ │ ├── bsp_spi_flash.c
│ │ │ ├── bsp_tft_lcd.c
│ │ │ ├── bsp_timer.c
│ │ │ ├── bsp_touch.c
│ │ │ ├── bsp_uart_fifo.c
│ │ │ └── bsp_wm8978.c
│ │ ├── stm32f4xx_assert.c
│ │ ├── stm32f4xx_conf.h
│ │ ├── stm32f4xx_it.c
│ │ ├── stm32f4xx_it.h
│ │ └── system_stm32f4xx.c
│ ├── fonts
│ │ ├── asc12.c
│ │ ├── asc16.c
│ │ ├── fonts.h
│ │ ├── hz12.c
│ │ ├── hz16.c
│ │ └── 说明.txt
│ ├── images
│ │ ├── Bat.c
│ │ ├── QQ.c
│ │ ├── SIM.c
│ │ ├── Spk.c
│ │ ├── UDisk.c
│ │ ├── images(美女竖屏).c
│ │ ├── images.c
│ │ ├── images.h
│ │ └── 背景横图.c
│ └── main.c
└── 删除目标文件(用于打包备份).bat
68 directories, 297 files
评论