问答

汇集网友智慧,解决技术难题

chenkaikai1692

TA的家园币:10  

  • DSPIC33EP无法发送字符串

    请教一下大家,使用DSPIC33EP128mc506,串口2,可以一个字符一个字符发送,但是却无法发送字符串,用MPLAB发现str永远指向一个地址,名称str类型char*(PSV?)地址0x1058,但是str的值会增加,然后*str的值一直为为'ÿ';0xff代码:voidbsp_uart2_SendByte(uint8_tch){if(!U2STAbits.UTXBF){U2TXREG=ch;}}voidbsp_uart2_SendString(char*str){while(*str!='\0'){bsp_uart2_SendByte(*str++);}while(U2STAbits.TRMT==0);}

    dspic33 字符串 BSP se UART2

    2021-07-21 2