Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Just use the hyperterminal that ships with windows
@ Nigel sorry I have the professional version... I didn't know basic XP doesn't have it
Now I'm cuffuffled!!!! I have vista AND windows 7 home premium at home and both have hyperterminal on...
I don't remember putting it on!!! I use it to debug my C# projects via "com0com" I link hyper terminal to both ISIS and visual studio....very strange....
"I wonder if Visual studio installs it!!!!"
unsigned short i;
void main() {
// Initialize USART module (8 bit, 9600 baud rate, no parity bit..)
Usart_Init(9600);
do {
if (Usart_Data_Ready()) { // If data is received
i = Usart_Read(); // Read the received data
Usart_Write(i); // Send data via USART
}
} while (1);
}//~