PropWare  3.0.0.229
C++ objects and CMake build system for Parallax Propeller
serial.h
Go to the documentation of this file.
1 
8 #ifndef _SYS_SERIAL_H
9 #define _SYS_SERIAL_H
10 
11 #include <compiler.h>
12 
24 int _serial_tx(int c, unsigned int txmask, unsigned int bitcycles);
25 
35 int _serial_putchar(int c);
36 
45 #define _DEFAULT_SERIAL_PUTCHAR \
46  _WEAK int putchar(int c) { return _serial_putchar(c); }
47 
48 
49 #endif
_serial_tx
int _serial_tx(int c, unsigned int txmask, unsigned int bitcycles)
Transmit a byte out a pin.
_serial_putchar
int _serial_putchar(int c)
Transmit a byte out the serial port.
compiler.h
Defines features of the compiler being used.