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
DataStructures/DataStructures.h
- Committer:
- pspatel321
- Date:
- 2015-02-07
- Revision:
- 38:8efacce315ae
File content as of revision 38:8efacce315ae:
#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
