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
Diff: DataStructures/DataStructures.h
- Revision:
- 38:8efacce315ae
--- /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
