mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2026-01-17 07:10:37 -05:00
The dsPIC_MPLAB demo project now compiles under MPLAB X v6.20 using xc16 compilers
This commit is contained in:
parent
31419bfcee
commit
61df9abef9
2 changed files with 9 additions and 0 deletions
|
|
@ -54,7 +54,10 @@
|
|||
#define portSTACK_TYPE uint16_t
|
||||
#define portBASE_TYPE short
|
||||
#define portPOINTER_SIZE_TYPE size_t
|
||||
/* Microchip xc16 compilers already define SIZE_MAX in stdint.h */
|
||||
#ifndef SIZE_MAX
|
||||
#define SIZE_MAX ( ( size_t ) -1 )
|
||||
#endif
|
||||
|
||||
typedef portSTACK_TYPE StackType_t;
|
||||
typedef short BaseType_t;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue