Fredric Rice / Mbed 2 deprecated NextGen-Exerciser

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI mbed-os BSP_DISCO_F429ZI

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers NextGen-Exerciser-Defines.h Source File

NextGen-Exerciser-Defines.h

00001 
00002 // ----------------------------------------------------------------------
00003 // NextGen-Exerciser-Defines.h
00004 //
00005 // Fredric L. Rice, May 2019
00006 //
00007 // ----------------------------------------------------------------------
00008 
00009 // Normally for mbed projects we would use "true" and "false" 
00010 // lower case however we define TUE and FALSE as well
00011 #ifndef TRUE
00012 #define TRUE        true
00013 #endif
00014 #ifndef FALSE
00015 #define FALSE       false
00016 #endif
00017 
00018 // ----------------------------------------------------------------------
00019 // Messages passed to threads via their mailbox objects look like this.
00020 //
00021 // ----------------------------------------------------------------------
00022 
00023     typedef struct
00024     {
00025         unsigned char  ach_message[512];
00026         unsigned short u16_size;
00027     } st_pendingMessage;
00028 
00029 // End of file