Hi
I would like to know if it is possible to display information onto a hyperterminal display on a PC. The uC is processing data like voltages and temperature and i would like to know how i could print this info on a screen. I'm using assembly language to program the 8051 and would be my preferred option.
I can give more details as needed
Thanks
Then write code to format your measurements in a suitable way (binary or ASCII) and drop off the data to the UART.
Small addition: You may want to avoid doing computationally expensive formatting (e.g. by using printf) on the 8051.