Martin Deng / Mbed 2 deprecated SystemManagement

Dependencies:   CANBuffer mbed SystemManagement mbed-rtos

Dependents:   SystemManagement

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers PollSwitch.h Source File

PollSwitch.h

00001 #ifndef _FILE_POLLSWITCH_H
00002 #define _FILE_POLLSWITCH_H
00003 
00004 #include "LPCDigitalOut.h"
00005 #include "LPCDigitalIn.h"
00006 #include "CANBuffer.h"
00007 #include "rtos.h"
00008 
00009 const int TX_POLL_ID = ((4 << 8) | 6);
00010 
00011 class PollSwitch{
00012     public:
00013         PollSwitch(CANBuffer *can);
00014         void start_update();  
00015 };
00016 #endif