This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Is it possibly to display data that the 8051 is processing on hyperterminal on a PC

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

Parents
  • As long as the amount of data you are processing is not more than a reasonable baudrate can transfer, then it is possible.

    Connect your the UART in your chip to a MAX232 or similar to convert from logic levels to RS232 levels.

    Then write code to format your measurements in a suitable way (binary or ASCII) and drop off the data to the UART. Either directly or using a circular buffer with an interrupt.

    There are huge numbers of example programs showing how to use the UART.

Reply
  • As long as the amount of data you are processing is not more than a reasonable baudrate can transfer, then it is possible.

    Connect your the UART in your chip to a MAX232 or similar to convert from logic levels to RS232 levels.

    Then write code to format your measurements in a suitable way (binary or ASCII) and drop off the data to the UART. Either directly or using a circular buffer with an interrupt.

    There are huge numbers of example programs showing how to use the UART.

Children