【E2109】STM32F407的AD7606芯片ADC采样例程

2021-11-03 01:11:12      索炜达电子      713     

项目编号:E2119

文件大小:2.95M

源码说明:带中文注释

开发环境:C编译器

简要概述:

STM32F407的AD7606芯片ADC采样例程

目录│文件列表:

    └ AD7606_FSMC FSMC例程(STM32F407)

       └ F4-029_AD7606数据采集模块例程

          │ 删除目标文件(用于打包备份).bat

          ├ Doc

          │  │ F4-001_例程执行结果(串口打印信息的截图).PNG

          │  │ 例程修改记录.txt

          │  │ 例程功能说明.txt

          │  │ 例程说明(中文)-ok.txt

          │  └ 开发环境说明.txt

          ├ Libraries

          │  │ 说明.txt

          │  ├ CMSIS

          │  │  │ CMSIS END USER LICENCE AGREEMENT.pdf

          │  │  │ README.txt

          │  │  ├ Device

          │  │  │  └ ST

          │  │  │     └ STM32F4xx

          │  │  │        │ Release_Notes.html

          │  │  │        ├ 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

          │  │  │        └ Source

          │  │  │           └ Templates

          │  │  │              │ system_stm32f4xx.c

          │  │  │              ├ arm

          │  │  │              │  └ startup_stm32f4xx.s

          │  │  │              ├ gcc_ride7

          │  │  │              │  └ startup_stm32f4xx.s

          │  │  │              ├ iar

          │  │  │              │  └ startup_stm32f4xx.s

          │  │  │              ├ TASKING

          │  │  │              │  └ cstart_thumb2.asm

          │  │  │              └ TrueSTUDIO

          │  │  │                 └ startup_stm32f4xx.s

          │  │  ├ 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_cortexM4bf_math.lib

          │  │     │  │ arm_cortexM4b_math.lib

          │  │     │  │ arm_cortexM4lf_math.lib

          │  │     │  └ arm_cortexM4l_math.lib

          │  ├ 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

          │  │  │ Release_Notes.html

          │  │  ├ 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

          │  ├ STM32_USB_HOST_Library

          │  │  │ Release_Notes.html

          │  │  ├ 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

          │  └ 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

          ├ Project

          │  │ output(flash).hex

          │  │ output(ram).hex

          │  │ 说明.txt

          │  ├ 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

          │     │ project.uvgui.acer0827

          │     │ project.uvgui.朱高阳

          │     │ project.uvopt

          │     │ project.uvproj

          │     │ 说明.txt

          │     └ 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

TAGAD7606
  • 18 次
  • 1 分