基本信息
源码名称:STM32-ads1256
源码大小:5.93M
文件格式:.zip
开发语言:C/C++
更新时间:2020-09-24
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
低温飘、超高精度的2.5V作为基准源。由于基准源是一个非常稳定的信号,直接采集一个稳定的信号,也能反映出一个采集卡的精度和稳定性,第0通道接基准电源2.5V,采样出来的结果,与六位半的表测出来结果一致。

 

LC-ADC-1256

├── ADS1256.hex
├── 原理图
│   └── ADS1256.pdf
├── 艾尔赛ADS1256 8路24位 高精度ADC模块.doc
├── 参考程序
│   ├── 51&&STM32 8位串口显示程序
│   │   ├── C51
│   │   │   ├── ADS1256
│   │   │   │   ├── ADS1256.C
│   │   │   │   └── ads1256.h
│   │   │   ├── proj
│   │   │   │   ├── ADS1256
│   │   │   │   ├── ADS1256.M51
│   │   │   │   ├── ADS1256.hex
│   │   │   │   ├── ADS1256.uvopt
│   │   │   │   └── ADS1256.uvproj
│   │   │   └── user
│   │   │       ├── STC15F2K60S2.H
│   │   │       ├── UART.h
│   │   │       └── main.c
│   │   ├── C51模拟SPI连接图.jpg
│   │   ├── STM32 硬件SPI
│   │   │   ├── Libraries
│   │   │   │   ├── CMSIS
│   │   │   │   │   ├── CM3
│   │   │   │   │   │   ├── CoreSupport
│   │   │   │   │   │   │   ├── core_cm3.c
│   │   │   │   │   │   │   └── core_cm3.h
│   │   │   │   │   │   └── DeviceSupport
│   │   │   │   │   │       └── ST
│   │   │   │   │   │           └── STM32F10x
│   │   │   │   │   │               ├── startup
│   │   │   │   │   │               │   ├── 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
│   │   │   │   │   │               │   ├── 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
│   │   │   │   │   │               ├── stm32f10x.h
│   │   │   │   │   │               ├── system_stm32f10x.c
│   │   │   │   │   │               └── system_stm32f10x.h
│   │   │   │   │   ├── Documentation
│   │   │   │   │   └── License.doc
│   │   │   │   └── STM32F10x_StdPeriph_Driver
│   │   │   │       ├── 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
│   │   │   ├── Project
│   │   │   │   ├── JLink Regs CM3.txt
│   │   │   │   ├── JLinkSettings.ini
│   │   │   │   ├── LIST
│   │   │   │   ├── OBJ
│   │   │   │   │   ├── STM32F103RBT6.hex
│   │   │   │   │   ├── startup_stm32f10x_hd._ia
│   │   │   │   │   └── startup_stm32f10x_ld._ia
│   │   │   │   ├── STM32.uvgui.HHH
│   │   │   │   ├── STM32.uvopt
│   │   │   │   └── STM32.uvproj
│   │   │   └── USER
│   │   │       ├── ADS1256
│   │   │       │   ├── ADS1256.C
│   │   │       │   └── ads1256.h
│   │   │       ├── INC
│   │   │       │   ├── bitband.h
│   │   │       │   ├── common.h
│   │   │       │   ├── eeprom.h
│   │   │       │   ├── platform_config.h
│   │   │       │   ├── stm32f10x_conf.h
│   │   │       │   ├── stm32f10x_it.h
│   │   │       │   └── systemconfig.h
│   │   │       └── SRC
│   │   │           ├── common.c
│   │   │           ├── eeprom.c
│   │   │           ├── main.c
│   │   │           ├── stm32f10x_it.c
│   │   │           ├── system_stm32f10x.c
│   │   │           └── systemconfig.c
│   │   ├── STM32硬件SPI连接图 .jpg
│   │   ├── STM32模拟SPI连接图.jpg
│   │   └── STM32软件模拟SPI
│   │       ├── Libraries
│   │       │   ├── CMSIS
│   │       │   │   ├── CM3
│   │       │   │   │   ├── CoreSupport
│   │       │   │   │   │   ├── core_cm3.c
│   │       │   │   │   │   └── core_cm3.h
│   │       │   │   │   └── DeviceSupport
│   │       │   │   │       └── ST
│   │       │   │   │           └── STM32F10x
│   │       │   │   │               ├── startup
│   │       │   │   │               │   ├── 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
│   │       │   │   │               │   ├── 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
│   │       │   │   │               ├── stm32f10x.h
│   │       │   │   │               ├── system_stm32f10x.c
│   │       │   │   │               └── system_stm32f10x.h
│   │       │   │   ├── Documentation
│   │       │   │   └── License.doc
│   │       │   └── STM32F10x_StdPeriph_Driver
│   │       │       ├── 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
│   │       ├── Project
│   │       │   ├── JLink Regs CM3.txt
│   │       │   ├── JLinkSettings.ini
│   │       │   ├── LIST
│   │       │   ├── OBJ
│   │       │   │   ├── STM32F103RBT6.hex
│   │       │   │   ├── startup_stm32f10x_hd._ia
│   │       │   │   └── startup_stm32f10x_ld._ia
│   │       │   ├── STM32.uvgui.HHH
│   │       │   ├── STM32.uvopt
│   │       │   └── STM32.uvproj
│   │       └── USER
│   │           ├── ADS1256
│   │           │   ├── ADS1256.C
│   │           │   └── ads1256.h
│   │           ├── INC
│   │           │   ├── bitband.h
│   │           │   ├── common.h
│   │           │   ├── eeprom.h
│   │           │   ├── platform_config.h
│   │           │   ├── stm32f10x_conf.h
│   │           │   ├── stm32f10x_it.h
│   │           │   └── systemconfig.h
│   │           └── SRC
│   │               ├── common.c
│   │               ├── eeprom.c
│   │               ├── main.c
│   │               ├── stm32f10x_it.c
│   │               ├── system_stm32f10x.c
│   │               └── systemconfig.c
│   └── 51_4位1602_LCD显示程序
│       └── ADS1256-C51
│           └── C51 - ok
│               ├── ADS1256
│               │   ├── ADS1256.C
│               │   └── ads1256.h
│               ├── proj
│               │   ├── ADS1256
│               │   ├── ADS1256.M51
│               │   ├── ADS1256.hex
│               │   ├── ADS1256.lnp
│               │   ├── ADS1256.lst
│               │   ├── ADS1256.obj
│               │   ├── ADS1256.plg
│               │   ├── ADS1256.uvgui.Yizun Chen
│               │   ├── ADS1256.uvgui_Yizun Chen.bak
│               │   ├── ADS1256.uvopt
│               │   ├── ADS1256.uvproj
│               │   ├── ADS1256_uvopt.bak
│               │   ├── ADS1256_uvproj.bak
│               │   ├── main.lst
│               │   └── main.obj
│               └── user
│                   ├── STC15F2K60S2.H
│                   ├── UART.H
│                   └── main.c
├── 工具软件
│   └── sscom32.exe
└── 相关资料
    ├── ADR03.pdf
    ├── ADS1256_Data Sheet.pdf
    ├── ADS1256原理和应用.pdf
    └── OPA350UA.pdf

63 directories, 255 files