采集到数据一直在跳变,换算后与接入电压值也不对应,调了两天也没搞好,请大家看看,帮帮忙
*********************************************************以下是程序代码,希望各位帮忙指正
#include "spi.h"
#include "sys.h"
//PA4、PA5、PA6分别接AD7606CS、SCK/RD,DB7
#define SCK_0() GPIOA->BRR = GPIO_Pin_5
#define SCK_1() GPIOA->BSRR = GPIO_Pin_5
void _SPI__Init()
{
GPIO_InitTypeDef GPIO_InitStructure;
SPI_InitTypeDef SPI_InitStruct;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA| RCC_APB2Periph_GPIOB|RCC_APB2Periph_SPI1 , ENABLE);
//配置SPI1 : SCK, MISO and MOSI */
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5;//SCK配置
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;//MISO配置
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);
//配置片选 IO PA4
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_4;//ƬѡÅäÖÃ
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_Init(GPIOA, &GPIO_InitStructure);
PAout(4)=1;
PAout(5)=0;
//配置CONVST GPIO */
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_Init(GPIOA, &GPIO_InitStructure);
PAout(8)=1;
//配置RANGE
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_Init(GPIOB, &GPIO_InitStructure);
PBout(5)=1;
//配置REST
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_7;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_Init(GPIOB, &GPIO_InitStructure);
PBout(7)=1;
//busy
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;//PB6_BUSY 配置
GPIO_Init(GPIOB, &GPIO_InitStructure);
SPI_InitStruct.SPI_BaudRatePrescaler=SPI_BaudRatePrescaler_64;
SPI_InitStruct.SPI_CPHA=SPI_CPHA_2Edge;//第二个上升沿采集
SPI_InitStruct.SPI_CPOL=SPI_CPOL_High;
SPI_InitStruct.SPI_CRCPolynomial=7;
SPI_InitStruct.SPI_DataSize=SPI_DataSize_8b;//8λ
SPI_InitStruct.SPI_Direction=SPI_Direction_1Line_Rx;//只读
SPI_InitStruct.SPI_FirstBit=SPI_FirstBit_MSB;//¸高位在前
SPI_InitStruct.SPI_Mode=SPI_Mode_Master;
SPI_InitStruct.SPI_NSS=SPI_NSS_Soft;
SPI_Init(SPI1,&SPI_InitStruct);
SPI_Cmd(SPI1, ENABLE);
ad7606_SetOS(0);//设置是否过采样
ad7606_SetInputRange(0);//设置范围
ad7606_Reset();//硬件复位
AD_CONVST_HIGH();
ad7606_StartConv();//开始转换
}
//设置电压范围0代表正负5V 1代表正负10v
void ad7606_SetInputRange(u8 _ucRange)
{
if (_ucRange == 0)
{
PBout(5) = 0;
}
else
{
PBout(5) = 1;
}
}
//硬件复位函数
void ad7606_Reset(void)
{
int i;
AD_CS_HIGH();
PBout(7)=0;
PBout(7)=1;
for(i=0;i<50;i++) ;
PBout(7)=0;
}
//开始转换函数
void ad7606_StartConv(void)
{
AD_CONVST_HIGH();
AD_CONVST_HIGH();
AD_CONVST_LOW();
AD_CONVST_LOW(); /* μíμçƽ50ns */
AD_CONVST_LOW();
AD_CONVST_LOW();
// delay_ms(5);
AD_CONVST_HIGH();
}
//设置是否过采样函数
void ad7606_SetOS(u8 _ucMode)
{
if (_ucMode == 1)
{
AD_OS2_0();
AD_OS1_0();
AD_OS0_1();
}
else if (_ucMode == 2)
{
AD_OS2_0();
AD_OS1_1();
AD_OS0_0();
}
else if (_ucMode == 3)
{
AD_OS2_0();
AD_OS1_1();
AD_OS0_1();
}
else if (_ucMode == 4)
{
AD_OS2_1();
AD_OS1_0();
AD_OS0_0();
}
else if (_ucMode == 5)
{
AD_OS2_1();
AD_OS1_0();
AD_OS0_1();
}
else if (_ucMode == 6)
{
AD_OS2_1();
AD_OS1_1();
AD_OS0_0();
}
else
{
AD_OS2_0();
AD_OS1_0();
AD_OS0_0();
}
}
//延时函数
void bsp_spiDelay(void)
{
u8 i;
for (i = 0; i<2; i++);
}
//读取8位数据
u8 bsp_spiRead(void)
{
u8 read=0;
u8 i;
for (i = 0; i < 8; i++)
{
SCK_0();//拉低时钟延时
bsp_spiDelay();
read<<=1;
if(PAin(6)==1)
{
read++;
}
SCK_1();//拉高时钟
bsp_spiDelay();
}
return read;
}
#include "stm32f10x.h"
#include "delay.h"
#include "usart.h"
#include "spi.h"
#include "led.h"
#include "string.h"
//#include "TIMER.h"
u16 ADC_value1[8];//′æ·Å8í¨μàêyÖμ
float pp[2];
char string[20];
int main(void)
{
u8 i;
SystemInit();
LED_Init();
_SPI__Init();
// _TIMER_Init_(4999,7199);
delay_init();
uart_init(115200);
while(1)
{
if(PBin(6)==0)//PB6接busy引脚,判断busy是否为零
{
PAout(5)=1;//拉高时钟线
AD_CS_LOW();//拉低片选
for(i=0;i<1;i++)
{
ADC_value1=bsp_spiRead();
ADC_value1=ADC_value1*256+bsp_spiRead();
pp=(float) ADC_value1/32767*5;
printf("%f
",pp);
}
AD_CS_HIGH();//拉高片选
ad7606_StartConv();//开始转换
}
delay_ms(500);
}
}
[/mw_shl_code]
*********************************************************以上是程序代码,希望各位帮忙指正
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
我再对照一下你的代码查一下
一周热门 更多>