ch376新建文件,在电脑上显示的文件名为乱码。
片选需要拉高一下
,不能一直为低电平。示例代码:
//正常代码
void app_ch376WriteBlock(u8 addr, u8 len, u8* buff)
{
/*=======================================*/
bsp_spiCsCtl(1);
mDelayuS(10);
bsp_spiCsCtl(0);
mDelayuS(2);
/*=======================================*/
bsp_spiWriteByte(addr);
while (len--)
{
bsp_spiWriteByte(*buff++);
}
}
//问题代码
void app_ch376WriteBlock(u8 addr, u8 len, u8* buff)
{
bsp_spiWriteByte(addr);
while (len--)
{
bsp_spiWriteByte(*buff++);
}
}