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
CurrentMonitor/CurrentMonitor.h
- Committer:
- martydd3
- Date:
- 2014-10-21
- Revision:
- 12:e0adb697fcdb
- Parent:
- 10:db13782f05d9
File content as of revision 12:e0adb697fcdb:
#ifndef _FILE_CURRENTMONITOR_H
#define _FILE_CURRENTMONITOR_H
#include "mbed.h"
#include "rtos.h"
#include "CANBuffer.h"
const int TX_CURRENT_ID = ((4 << 8) | 3);
class CurrentMonitor{
public:
CurrentMonitor(CANBuffer *can);
void start_update();
private:
};
#endif
