Penn Electric Racing / Mbed 2 deprecated SystemManagement

Dependencies:   mbed CANBuffer Watchdog MODSERIAL mbed-rtos xbeeRelay IAP

Fork of SystemManagement by Martin Deng

Revision:
38:8efacce315ae
diff -r 2207b58b9a7f -r 8efacce315ae DataStructures/DataStructures.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/DataStructures/DataStructures.h	Sat Feb 07 08:54:51 2015 +0000
@@ -0,0 +1,13 @@
+#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