|
ME Labs, Inc. 719-520-5323 |
|
|
|
ME Labs, Inc. | 1-719-520-5323 | Example Program - HSER.pbpPICBASIC PRO program to demonstrate sending and receiving with the hardware serial port. Defaults to 2400 bps.' Name : HSER.pbp
' Compiler : PICBASIC PRO Compiler 2.6
' Assembler : PM or MPASM
' Target PIC : 16F, 18F with hardware USART
' Hardware : Non specific
' Oscillator : 4MHz external crystal or resonator
' Keywords : HSERIN, HSEROUT, USART
' Description : PICBASIC PRO program to demonstrate sending and receiving
' with the hardware serial port. Defaults to 2400 bps.
'
char Var byte ' Storage for serial character
start:
Hserout ["Hello World", 13, 10] ' Send text followed by carriage return and linefeed
mainloop:
Hserin 10000, start, [char] ' Get a char from serial port
Hserout [char] ' Send char out serial port
Goto mainloop ' Do it all over again
End
Download the program file. |
|
Copyright 2019 ME Labs, Inc. PO Box 8250 Asheville NC 28814 (719) 520-5323 (719) 520-1867 fax email: support@melabs.com |
|