PropWare  3.0.0.229
C++ objects and CMake build system for Parallax Propeller
Serial.h
Go to the documentation of this file.
1 
9 #ifndef Serial_h
10 #define Serial_h
11 
12 class Serial_
13 {
14 public:
15  int available(void);
16  void begin(uint16_t baud_count);
17  void end(void);
18  void flush(void);
19  void print(const char * str);
20  void println(long num);
21  void println(const char * str);
22  int read(void);
23 };
24 extern Serial_ Serial;
25 #endif
Serial_
Definition: Serial.h:12