• uart interrupt on str9 without polling
    Hi , I am looking for the code for uart0 for STR9 in which wnen ever I send some character form the terminal it should just jump to the interrupt handler print taht character then come back can any...
  • uart interrupt on str9 without polling
    Hi , I am looking for the code for uart0 for STR9 in which wnen ever I send some character form the terminal it should just jump to the interrupt handler print taht character then come back can any...
  • UART Communication: Polling or Interrupt?
    There are basically two ways to interface UART in 8051: 1) Receive by polling the RI register in the main() loop, Transmit by using printf finction. Advantage: it's easy. Disadvantage: it's tricky as...
  • UART Communication: Polling or Interrupt?
    There are basically two ways to interface UART in 8051: 1) Receive by polling the RI register in the main() loop, Transmit by using printf finction. Advantage: it's easy. Disadvantage: it's tricky as...
  • uart interrupt str9
    hi all, I want to make a interrupt driven uart for str9 inwhich when it recieves a character it should jump to recieve interrupt handler where i will process somethinh to the character and then it should...