System Management code
Dependencies: mbed CANBuffer Watchdog MODSERIAL mbed-rtos xbeeRelay IAP
Fork of SystemManagement by
DataStructures/DataStructures.h
- Committer:
- pspatel321
- Date:
- 2015-02-11
- Revision:
- 39:ddf38df9699e
- Parent:
- 38:8efacce315ae
File content as of revision 39:ddf38df9699e:
#ifndef DATA_STRUCTURES_H
#define DATA_STRUCTURES_H
#include "FreezeFrame.h"
#include "TemporaryData.h"
extern FreezeFrame frame; // Allow global access to the current RAM frame as well
extern Profile *param; // Allow global access to the current RAM profile inside of FreezeFrame frame
extern OperatingInfo *op; // Allow global access to the current RAM operating info inside of FreezeFrame frame
extern TemporaryData tempData; // Allow global access to the RAM temporary data object for stuff that does not belong in a profile nor is it relevant to operating info in a freeze frame
#endif
