C语言 “illegal type conversion”(非法类型转换)的错误,(利用串口发送字符串时发生的)
错误发生在BSP_Init.c文件的第78行,出现了“illegaltypeconversion”(非法类型转换)的错误。代码如下:voidPutchar(uint8_tdata){while(!TRMT);//发送寄存器为空TXB=data;//发送数据CLRWDT();//喂狗}voidSendString(unsignedchar*p){while(*p!='\0'){CLRWDT();//