Board mạch của mình có thiết kế luôn con pl2303hx,driver đã cài,máy tính đã nhận cổng com,nhưng quái lạ terminal không hiện gì,code mình viết chỉ có thế này,không hiểu tại sao ko đẩy lên được
Mình dùng mikro C for Pic v5.8.0,lúc tạo project mình đã add file P18f26k20.c vào rồi,các bạn giúp mình với!thanks
void main() {
ANSEL = 0; // Configure AN pins as digital
ANSELH = 0;
UART1_Init(9600); // Initialize UART module at 9600 bps
Delay_ms(100); // Wait for UART module to stabilize
while (1) { // Endless loop
UART1_Write_Text("bachkhoa");
delay_ms(1000);
}
}
ANSEL = 0; // Configure AN pins as digital
ANSELH = 0;
UART1_Init(9600); // Initialize UART module at 9600 bps
Delay_ms(100); // Wait for UART module to stabilize
while (1) { // Endless loop
UART1_Write_Text("bachkhoa");
delay_ms(1000);
}
}
Comment