Add define for TRUE/FALSE, needed include is missing in the AM335x TI BSP

pull/48/head
Andreas Karlsson 2019-02-18 08:26:24 +01:00
parent 7808b675e0
commit 830a7fb394
1 changed files with 9 additions and 2 deletions

View File

@ -8,17 +8,24 @@
#define STATE_INIT ((uint8_t)0x01)
#ifndef SOES
#define SOES 1
#define SOES 1
#endif
#ifndef VARVOLATILE
#define VARVOLATILE volatile
#define VARVOLATILE volatile
#endif
#ifndef AL_EVENT_ENABLED
#define AL_EVENT_ENABLED 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
#ifndef TRUE
#define TRUE 1
#endif
int MainInit(void);
void MainLoop(void);