xrocusOS_ADXL355 version

Dependencies:   mbed SDFileSystem

Committer:
Inscape_ao
Date:
Wed Apr 24 02:34:51 2019 +0000
Revision:
5:a37e3a15444b
Parent:
2:a694440145e9
Child:
7:9ab8809f9693
add SDDataStore ; and SD Control commands (SDS, SDE, SDW[for Test])

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Inscape_ao 0:c347f602596d 1 #ifndef _GLOBAL_H_
Inscape_ao 0:c347f602596d 2 #define _GLOBAL_H_
Inscape_ao 0:c347f602596d 3
Inscape_ao 0:c347f602596d 4 #include "UartReceiver.h"
Inscape_ao 0:c347f602596d 5 #include "CommandParser.h"
Inscape_ao 2:a694440145e9 6 #include "TimeManager.h"
Inscape_ao 5:a37e3a15444b 7 #include "SDDataStore.h"
Inscape_ao 0:c347f602596d 8
Inscape_ao 2:a694440145e9 9 extern TimeManager *pTM;
Inscape_ao 0:c347f602596d 10 extern CommandParser *pCP;
Inscape_ao 0:c347f602596d 11 extern UartReceiver *pUR;
Inscape_ao 5:a37e3a15444b 12 extern SDDataStore *pSds;
Inscape_ao 0:c347f602596d 13
Inscape_ao 2:a694440145e9 14 /* define command rules */
Inscape_ao 2:a694440145e9 15 extern CmdParseRule rules[];
Inscape_ao 2:a694440145e9 16 extern int getNumOfRules;
Inscape_ao 2:a694440145e9 17
Inscape_ao 0:c347f602596d 18 #endif /* _GLOBAL_H_ */