极品馒头泬19p,国产精品亚洲一区二区三区,狠狠色噜噜狠狠狠7777奇米,国产精品视频一区二区三区无码,国产欧美日韩久久久久

【E15】基于STM32F103C8T6的ADC數(shù)據(jù)采集DEMO

2021-08-11 18:55:53      索煒達(dá)電子      1382     

項(xiàng)目編號(hào):E15

文件大?。?M

源碼說(shuō)明:帶中文注釋

開(kāi)發(fā)環(huán)境:Keil5

簡(jiǎn)要概述:

芯片介紹ADS1256

-24位速率和PGA改變

-高達(dá)23位的無(wú)噪聲分辨率

-數(shù)據(jù)率達(dá)30KSPS。

-快速的通道切換。(這里需要了解一下AD的有效位effective Bits)

-一個(gè)觸發(fā)轉(zhuǎn)換(單通道時(shí)候)

-靈活可配備傳感器檢測(cè)的輸入通道選擇(4個(gè)差分 or 8個(gè)單通道)

-達(dá)80歐的輸入buffer(提高輸入阻抗)

-低噪聲的PGA設(shè)置

-自校正和系統(tǒng)校正

-低功耗:

1、38mW(正常模式)

2、0.4mW(待機(jī)模式)

實(shí)物圖示:

【E15】基于STM32F103C8T6的ADC數(shù)據(jù)采集DEMO

【E15】基于STM32F103C8T6的ADC數(shù)據(jù)采集DEMO


//PA9 -----> Tx

//PA10 -----> Rx

//***************************

// STM32 ADS1256

// GPIOB_Pin_11 --- DRDY

// GPIOB_Pin_12 --- CS

// GPIOB_Pin_13 --- SCK

// GPIOB_Pin_14 --- DOUT

// GPIOB_Pin_15 --- DIN

// 3.3 --- RST_N

//***************************

文件列表:

目錄│文件列表:

 └ 源碼

    ├ CMSIS

    │  │ core_cm3.c

    │  │ core_cm3.h

    │  │ stm32f10x.h

    │  │ system_stm32f10x.c

    │  │ system_stm32f10x.h

    │  └ startup

    │     │ startup_stm32f10x_hd.s

    │     │ startup_stm32f10x_ld.s

    │     └ startup_stm32f10x_md.s

    ├ FWlib

    │  ├ inc

    │  │  │ misc.h

    │  │  │ stm32f10x_adc.h

    │  │  │ stm32f10x_bkp.h

    │  │  │ stm32f10x_can.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_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

    ├ Listing

    │  │ startup_stm32f10x_hd.lst

    │  └ STM32-DEMO.map

    ├ Output

    │  │ adc.crf

    │  │ adc.d

    │  │ adc.o

    │  │ ads1256.crf

    │  │ ads1256.d

    │  │ ads1256.o

    │  │ core_cm3.crf

    │  │ core_cm3.d

    │  │ core_cm3.o

    │  │ delay.crf

    │  │ delay.d

    │  │ delay.o

    │  │ ExtDll.iex

    │  │ main.crf

    │  │ main.d

    │  │ main.o

    │  │ misc.crf

    │  │ misc.d

    │  │ misc.o

    │  │ startup_stm32f10x_hd.d

    │  │ startup_stm32f10x_hd.o

    │  │ STM32-DEMO.axf

    │  │ STM32-DEMO.build_log.htm

    │  │ STM32-DEMO.hex

    │  │ STM32-DEMO.htm

    │  │ STM32-DEMO.lnp

    │  │ STM32-DEMO_ADC-DEMO.dep

    │  │ stm32f10x_adc.crf

    │  │ stm32f10x_adc.d

    │  │ stm32f10x_adc.o

    │  │ stm32f10x_dma.crf

    │  │ stm32f10x_dma.d

    │  │ stm32f10x_dma.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_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

    │  │ system_stm32f10x.crf

    │  │ system_stm32f10x.d

    │  │ system_stm32f10x.o

    │  │ timer.crf

    │  │ timer.d

    │  │ timer.o

    │  │ usart.crf

    │  │ usart.d

    │  │ usart.o

    │  │ usart1.crf

    │  │ usart1.d

    │  └ usart1.o

    └ USER

       │ ADS1256.c

       │ ADS1256.h

       │ bit.h

       │ delay.c

       │ delay.h

       │ main.c

       │ misc.c

       │ STM32-DEMO.uvguix.20155

       │ STM32-DEMO.uvoptx

       │ STM32-DEMO.uvprojx

       │ stm32f10x_conf.h

       │ stm32f10x_it.c

       │ stm32f10x_it.h

       │ SysTick.c

       │ SysTick.h

       │ Timer.c

       │ Timer.h

       │ Usart.c

       │ Usart.h

       └ DebugConfig

          └ ADC-DEMO_STM32F103C8.dbgconf

TAGADC數(shù)據(jù)
  • 9 次
  • 1 分