PROJ515 / Mbed 2 deprecated PROJ514-MASTER

Dependencies:   mbed mbed-rtos ShiftReg2 TextLCD

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Serial_PC.hpp Source File

Serial_PC.hpp

00001 #ifndef _SERIAL_PC_HPP_
00002 #define _SERIAL_PC_HPP_
00003 
00004 #include "mbed.h"
00005 #include "rtos.h" 
00006 #include "Interface.hpp"
00007 
00008 extern int Logging;
00009 class SERIAL_PC
00010 {
00011     public://Public member functions and variables
00012     
00013     SERIAL_PC();
00014     ~SERIAL_PC();
00015     void Init();
00016     int Post();
00017     void Main();
00018     //Public Functions
00019     
00020     
00021     private://Private member functions and variables
00022     char _buffer[32];//Character buffer for the serial data to be stored within
00023   
00024 
00025 };
00026 
00027 
00028 #endif //_SERIAL_PC_HPP_