2 #ifndef FREERTOS_STDINT
3 #define FREERTOS_STDINT
5 /*******************************************************************************
6 * THIS IS NOT A FULL stdint.h IMPLEMENTATION - It only contains the definitions
7 * necessary to build the FreeRTOS code. It is provided to allow FreeRTOS to be
8 * built using compilers that do not provide their own stdint.h definition.
12 * 1) Copy this file into the directory that contains your FreeRTOSConfig.h
13 * header file, as that directory will already be in the compilers include
16 * 2) Rename the copied file stdint.h.
20 typedef signed char int8_t;
21 typedef unsigned char uint8_t;
22 typedef short int16_t;
23 typedef unsigned short uint16_t;
25 typedef unsigned long uint32_t;
27 #endif /* FREERTOS_STDINT */