Finalise MSP43FR5969 IAR and CCS demos (hopefully).

This commit is contained in:
Richard Barry 2015-04-28 13:53:30 +00:00
parent 9bb5b40c81
commit 067c1573c3
9 changed files with 476 additions and 76 deletions

View file

@ -96,6 +96,7 @@
#define portSTACK_TYPE uint32_t
#else
#define portSTACK_TYPE uint16_t
#define portPOINTER_SIZE_TYPE uint16_t
#endif
typedef portSTACK_TYPE StackType_t;

View file

@ -94,6 +94,7 @@
/* The stack type changes depending on the data model. */
#if( __DATA_MODEL__ == __DATA_MODEL_SMALL__ )
#define portSTACK_TYPE uint16_t
#define portPOINTER_SIZE_TYPE uint16_t
#else
#define portSTACK_TYPE uint32_t
#endif