Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed CANBuffer Watchdog MODSERIAL mbed-rtos xbeeRelay IAP
Fork of SystemManagement by
PollSwitch/PollSwitch.h
- Committer:
- martydd3
- Date:
- 2014-10-10
- Revision:
- 7:5f6e31faa08e
- Parent:
- 6:6a04210a3f4f
- Child:
- 12:e0adb697fcdb
File content as of revision 7:5f6e31faa08e:
#ifndef _FILE_POLLSWITCH_H
#define _FILE_POLLSWITCH_H
#include "LPCDigitalOut.h"
#include "LPCDigitalIn.h"
#include "CANBuffer.h"
#include "rtos.h"
const int TX_POLL_ID = ((4 << 8) | 6);
class PollSwitch{
public:
PollSwitch(CANBuffer *can);
void start_update();
};
#endif
