Penn Electric Racing / Mbed 2 deprecated SystemManagement

Dependencies:   mbed CANBuffer Watchdog MODSERIAL mbed-rtos xbeeRelay IAP

Fork of SystemManagement by Martin Deng

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers DataStructures.h Source File

DataStructures.h

00001 #ifndef DATA_STRUCTURES_H
00002 #define DATA_STRUCTURES_H
00003 
00004 #include "FreezeFrame.h"
00005 #include "TemporaryData.h"
00006 
00007 extern FreezeFrame frame;       // Allow global access to the current RAM frame as well
00008 extern Profile *param;          // Allow global access to the current RAM profile inside of FreezeFrame frame
00009 extern OperatingInfo *op;       // Allow global access to the current RAM operating info inside of FreezeFrame frame
00010 
00011 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
00012 
00013 #endif