• 大小: 505KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-09
  • 语言: 其他
  • 标签: ADC  cs1237程序  

资源简介

芯海科技推出的一款AD转换芯片,CS1237的AD分辨率为24位,内部集成温度传感器,本文件内含有基于STM32的驱动程序,我还有一份51的驱动,下一篇博客分享。

资源截图

代码片段和文件信息

#include “adc.h“
#include “stdlib.h“
#include “delay.h“
//#define ADC_Bit  16 //ADC有效位数,带符号位 最高24位


void mode_IPU(void)//IO模式切换
{
   GPIO_InitTypeDef  GPIO_InitStructure;

   GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;  //LED0-->PA.8 端口配置   DOUT
   GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;   //上拉输入
   GPIO_Init(GPIOB &GPIO_InitStructure);  //根据设定参数初始化GPIOA.8

}


void mode_PP(void)
{
   GPIO_InitTypeDef  GPIO_InitStructure;

   GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;  //LED0-->PA.8 端口配置   DOUT
   GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;   //推挽
 GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;  //IO口速度为50MHz
   GPIO_Init(GPIOB &GPIO_InitStructure);  //根据设定参数初始化GPIOA.8

}


void F_AD_Clock(void)  //一个脉冲
{
SCK=1;delay_us(10);

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件      613529  2019-03-06 11:50  cs1237\DS_CS1237_V1.1.pdf
     文件        5110  2019-05-31 17:04  cs1237\adc.c
     文件         443  2019-05-25 11:02  cs1237\adc.h
     目录           0  2019-05-31 17:05  cs1237\

评论

共有 条评论