cs5460a+stm32f030c8调了半个月读出的数据都是00,有谁能帮忙看一下

#include"cs5460a.h"#include"systick.h"voidCS5460A_SPI_Init(void){SPI_InitTypeDefSPI_I... #include "cs5460a.h"
#include "systick.h"
void CS5460A_SPI_Init(void)
{
SPI_InitTypeDef SPI_InitStructure;
GPIO_InitTypeDef GPIO_InitStruct;

RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOA| RCC_AHBPeriph_GPIOB, ENABLE);
RCC_APB1PeriphClockCmd( RCC_APB1Periph_SPI2, ENABLE );

/*SCK */
GPIO_InitStruct.GPIO_Pin = GPIO_Pin_13;//#define FLASH_SCK_PIN GPIO_Pin_13
GPIO_InitStruct.GPIO_Mode = GPIO_Mode_AF;
GPIO_InitStruct.GPIO_Speed = GPIO_Speed_Level_3;
GPIO_InitStruct.GPIO_OType = GPIO_OType_PP;
GPIO_InitStruct.GPIO_PuPd = GPIO_PuPd_UP;
GPIO_Init(GPIOB, &GPIO_InitStruct);//#define FLASH_SCK_PORT GPIOB

/*MOSI */
GPIO_InitStruct.GPIO_Pin =GPIO_Pin_15;
GPIO_Init(GPIOB, &GPIO_InitStruct);

/*MISO */
GPIO_InitStruct.GPIO_Pin = GPIO_Pin_14;
GPIO_InitStruct.GPIO_Mode = GPIO_Mode_AF;
GPIO_InitStruct.GPIO_Speed = GPIO_Speed_Level_3;
GPIO_InitStruct.GPIO_OType = GPIO_OType_OD;
GPIO_InitStruct.GPIO_PuPd = GPIO_PuPd_UP;
GPIO_Init(GPIOB, &GPIO_InitStruct);

/*SPI_SCK */
GPIO_PinAFConfig(GPIOB , GPIO_PinSource13, GPIO_AF_0);

/* SPI_MISO */
GPIO_PinAFConfig(GPIOB , GPIO_PinSource14, GPIO_AF_0);

/*SPI_MOSI */
GPIO_PinAFConfig(GPIOB , GPIO_PinSource15, GPIO_AF_0);

//CS5460_CS
GPIO_InitStruct.GPIO_Pin =GPIO_Pin_12;
GPIO_InitStruct.GPIO_Mode = GPIO_Mode_OUT;
GPIO_InitStruct.GPIO_OType = GPIO_OType_PP;
GPIO_InitStruct.GPIO_PuPd = GPIO_PuPd_UP;
GPIO_InitStruct.GPIO_Speed = GPIO_Speed_Level_3;
GPIO_Init(GPIOB, &GPIO_InitStruct);

//CS5460_RESET
GPIO_InitStruct.GPIO_Pin =GPIO_Pin_11;
GPIO_InitStruct.GPIO_Mode = GPIO_Mode_OUT;
GPIO_InitStruct.GPIO_OType = GPIO_OType_PP;
GPIO_InitStruct.GPIO_PuPd = GPIO_PuPd_UP;
GPIO_InitStruct.GPIO_Speed = GPIO_Speed_Level_3;
GPIO_Init(GPIOA, &GPIO_InitStruct);

//CS5460_INT
GPIO_InitStruct.GPIO_Pin = GPIO_Pin_8 ;
GPIO_InitStruct.GPIO_Mode = GPIO_Mode_IN;
GPIO_InitStruct.GPIO_Speed = GPIO_Speed_Level_2;
GPIO_InitStruct.GPIO_PuPd = GPIO_PuPd_UP;
GPIO_Init(GPIOA, &GPIO_InitStruct);

/* SPI2初始化*/
SPI_InitStructure.SPI_Direction = SPI_Direction_2Lines_FullDuplex;
SPI_InitStructure.SPI_Mode = SPI_Mode_Master;
SPI_InitStructure.SPI_DataSize = SPI_DataSize_8b;
SPI_InitStructure.SPI_CPOL = SPI_CPOL_Low;
SPI_InitStructure.SPI_CPHA = SPI_CPHA_1Edge;
SPI_InitStructure.SPI_NSS = SPI_NSS_Soft;
SPI_InitStructure.SPI_BaudRatePrescaler = SPI_BaudRatePrescaler_128;
SPI_InitStructure.SPI_FirstBit = SPI_FirstBit_MSB;
SPI_InitStructure.SPI_CRCPolynomial = 7;
SPI_Init(SPI2, &SPI_InitStructure);
SPI_RxFIFOThresholdConfig(SPI2, SPI_RxFIFOThreshold_QF);

SPI_Cmd(SPI2, ENABLE);

}

void Reset5460(void)
{
GPIO_ResetBits(GPIOA,GPIO_Pin_11);
Delay_ms(20); //20ms
GPIO_SetBits(GPIOA,GPIO_Pin_11);
}
展开
 我来答
宋威山山水水
2015-07-29
知道答主
回答量:17
采纳率:0%
帮助的人:4.5万
展开全部
楼主去搜官网的例子来看吧,这个spi通信我也遇到麻烦,再找问题呢?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式