Action
Configure the uP to select the internal baud rate generator for serial channel 1.
This baud rate generator is only available in the 80517 and 80537.
Syntax
CONFIG BAUD1 = baudrate
Remarks
Baudrate |
Baud rate to use : 2048 - 37500 |
The 80517 and 80537 have 2 serial ports on board.
See also
Example
CONFIG BAUD1 = 9600 'use internal baud generator
OPEN "Com2:" for Binary as #1
Print #1, "Hello"
Close #1
End