中级会员
- 积分
- 212
- 金钱
- 212
- 注册时间
- 2015-8-1
- 在线时间
- 7 小时
|
5金钱
<p>
由于 SPI2 是连着 w25q128 的,程序有中文显示,随时用到 w25q128,所以想SPI1连接 2.4G。
</p>
<p>
用 8 根杜邦线分别连了 SPI1 的三个引脚 PA 5、6、7,其他的引脚和原先连 SPI2 一致,vcc 和 gnd接的板子 3.3v输出。
</p>
<p>
但是检查设备始终通不过。原子兄和各位高手请指点下
</p>
<p>
代码如下:
</p>
<p>
<div style="background-color:#E8E8E8;">
[mw_shl_code=c,true]void WIRELESS_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOG, ENABLE);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_7 | GPIO_Pin_8; // 分别对应 CSN、CE 引脚
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; // 推挽输出
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOG, &GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6; // PG6 输入
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPD;
GPIO_Init(GPIOG, &GPIO_InitStructure);
GPIO_ResetBits(GPIOG, GPIO_Pin_6 | GPIO_Pin_7 | GPIO_Pin_8); // PG6,7,8上拉
WIRELESS_CE = 0; // 使能 24L01
WIRELESS_CSN = 1; // SPI片选取消
}
// 检测24L01是否存在
bool WIRELESS_CheckDevice(void)
{
u8 lBuffer[5] = { 0xA5, 0xA5, 0xA5, 0xA5, 0xA5 };
u8 i;
SPI1_SetSpeed(SPI_BaudRatePrescaler_16); // SPI 速度为 9Mhz(24L01 的最大 SPI 时钟为 10Mhz)
WIRELESS_WriteBuffer(NRF_WRITE_REG + NFR_TX_ADDRESS, lBuffer, 5); // 写入 5 个字节的地址.
WIRELESS_ReadBuffer(NRF_READ_REG + NFR_TX_ADDRESS, lBuffer, 5); // 读出写入的地址
for(i = 0; i < 5; i++)
if(lBuffer != 0xA5)
return FALSE;
return TRUE; // 检测到24L01
}[/mw_shl_code]
</div>
<div style="background-color:#E8E8E8;">
[mw_shl_code=c,true]// SPI1 用于访问 NRF24L01
void SPI1_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
SPI_InitTypeDef SPI_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_GPIOE, ENABLE); // PORTA,E 时钟使能
RCC_APB1PeriphClockCmd(RCC_APB2Periph_SPI1, ENABLE); // SPI1 时钟使能
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5 | GPIO_Pin_6 | GPIO_Pin_7; // 分别对应 SCK、MISO、MOSI 三个引脚
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; // PA5/6/7复用推挽输出
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure); // 初始化GPIOA
GPIO_SetBits(GPIOA, GPIO_Pin_5 | GPIO_Pin_6 | GPIO_Pin_7); // PA5/6/7上拉
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6; // PE6,VS1053 复位
GPIO_Init(GPIOE, &GPIO_InitStructure);
GPIO_ResetBits(GPIOE, GPIO_Pin_6); // 复位 VS1053
SPI_InitStructure.SPI_Direction = SPI_Direction_2Lines_FullDuplex; // SPI设置为双线双向全双工
SPI_InitStructure.SPI_Mode = SPI_Mode_Master; // SPI主机
SPI_InitStructure.SPI_DataSize = SPI_DataSize_8b; // 发送接收8位帧结构
SPI_InitStructure.SPI_CPOL = SPI_CPOL_Low; // 时钟悬空低
SPI_InitStructure.SPI_CPHA = SPI_CPHA_1Edge; // 数据捕获于第1个时钟沿
SPI_InitStructure.SPI_NSS = SPI_NSS_Soft; // NSS信号由软件控制
SPI_InitStructure.SPI_BaudRatePrescaler = SPI_BaudRatePrescaler_16; // 定义波特率预分频的值:波特率预分频值为16
SPI_InitStructure.SPI_FirstBit = SPI_FirstBit_MSB; // 数据传输从MSB位开始
SPI_InitStructure.SPI_CRCPolynomial = 7; // CRC值计算的多项式
SPI_Init(SPI1, &SPI_InitStructure); // 根据SPI_InitStruct中指定的参数初始化外设SPIx寄存器
SPI_Cmd(SPI1, ENABLE); // 使能SPI外设
SPI1_ReadWrite(0xFF); // 启动传输
}[/mw_shl_code]
</div>
<p>
main 方法里涉及到 NRF 初始化的部分
</p>
<div style="background-color:#E8E8E8;">
[mw_shl_code=c,true] SPI1_Init(); // 被 WIRELESS_Init 依赖
WIRELESS_Init();
oDebug("初始化:无线射频...");
if(WIRELESS_CheckDevice() == TRUE)
oDebug("成功\r\n");
else
oDebug("失败\r\n");[/mw_shl_code]
</div>
始终报失败
<p>
<br />
</p> |
最佳答案
查看完整内容[请看2#楼]
问题找到了,代码中有个错误
[mw_shl_code=c,true]RCC_APB1PeriphClockCmd(RCC_APB2Periph_SPI1, ENABLE); [/mw_shl_code]
改成 RCC_APB2... 就可以了。而且,也可以去掉 PE6 那个复位 vs1053 的代码。
|