• baud rate does not exceed 16 bit value
    I am trying to assign a baud rate of 115k to com1. (i.e. mode com1 115200). I get an error that states "Error 189: Value out of Range." By playing around I saw that the maximum baud rate setting is 65535...
  • baud rate does not exceed 16 bit value
    I am trying to assign a baud rate of 115k to com1. (i.e. mode com1 115200). I get an error that states "Error 189: Value out of Range." By playing around I saw that the maximum baud rate setting is 65535...
  • negative monocrome interted
    Hi all! How can I write routine in negative mode (monocrome inverted) using an area of code? Who can help me? Are there special instructions in the new C book?
  • negative monocrome interted
    Hi all! How can I write routine in negative mode (monocrome inverted) using an area of code? Who can help me? Are there special instructions in the new C book?
  • Baud Rate
    Specification for AT89C51 Baud rate - 9600 Clock - 12MHz SMOD - 1 TH1 - 0xF9 so is my code correct? Code: void serial_send() { SCON=0x50; TMOD=0x20; TH1=0xF9; TR1=1; TI=1; } Confusedman...