' file: hello_world.bas ' this file prints out a simple text message on the 9 pin ' serial port using the Mega 8535's UART (Universal Asynchonous ' Receiver Transmitter). This is not to be confused with the ' programming port. They are separate ports. The 9 pin DB9 ' connector is marked "SER" on the board silkscreen. '-------------------------------------------------------------- ' put in the cal value for your part here (marked on the 8535 case ' most are hex 9F, some 91's and some in between Osccal = &HA3 Print "hello frank" End