System Management code

Dependencies:   mbed CANBuffer Watchdog MODSERIAL mbed-rtos xbeeRelay IAP

Fork of SystemManagement by Martin Deng

Committer:
pspatel321
Date:
Wed Feb 11 23:09:57 2015 +0000
Revision:
39:ddf38df9699e
Parent:
38:8efacce315ae
Updated CAN IDs for datalogging.  Changed profile encoding.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
pspatel321 38:8efacce315ae 1 #ifndef DATA_STRUCTURES_H
pspatel321 38:8efacce315ae 2 #define DATA_STRUCTURES_H
pspatel321 38:8efacce315ae 3
pspatel321 38:8efacce315ae 4 #include "FreezeFrame.h"
pspatel321 38:8efacce315ae 5 #include "TemporaryData.h"
pspatel321 38:8efacce315ae 6
pspatel321 38:8efacce315ae 7 extern FreezeFrame frame; // Allow global access to the current RAM frame as well
pspatel321 38:8efacce315ae 8 extern Profile *param; // Allow global access to the current RAM profile inside of FreezeFrame frame
pspatel321 38:8efacce315ae 9 extern OperatingInfo *op; // Allow global access to the current RAM operating info inside of FreezeFrame frame
pspatel321 38:8efacce315ae 10
pspatel321 38:8efacce315ae 11 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
pspatel321 38:8efacce315ae 12
pspatel321 38:8efacce315ae 13 #endif