Dear các bác! Em có mã coppy từ MPlab(chạy tốt) sang CCS (báo lỗi), các bác rành chỉ dùm em lỗi là do đâu với ạ! Giao tiếp UART ạ. Mã này:
void _esp8266_putch(char bt)
{
while(!TXIF); // hold the program till TX buffer is free
TXREG = bt; //Load the transmitter buffer with the received value
}
//_____________End of function________________//
void _esp8266_print( const unsigned char *a)
{
while (*a != 0)
{
_esp8266_putch(*a++);
}
}
BUILD THÌ BÁO LỖI Ở "const unsigned char *a" ==>>>>" Expecting an indetifier" //Mong chờ một định danh
EM KHÔNG HIỂU KHAI BÁO "const unsigned char *a" SAI Ở CHỖ NÀO MÀ THẾ. BÁC NÀO BIẾT CHỈ DÙM EM VỚI Ạ.
void _esp8266_putch(char bt)
{
while(!TXIF); // hold the program till TX buffer is free
TXREG = bt; //Load the transmitter buffer with the received value
}
//_____________End of function________________//
void _esp8266_print( const unsigned char *a)
{
while (*a != 0)
{
_esp8266_putch(*a++);
}
}
BUILD THÌ BÁO LỖI Ở "const unsigned char *a" ==>>>>" Expecting an indetifier" //Mong chờ một định danh
EM KHÔNG HIỂU KHAI BÁO "const unsigned char *a" SAI Ở CHỖ NÀO MÀ THẾ. BÁC NÀO BIẾT CHỈ DÙM EM VỚI Ạ.
Comment