]> begriffs open source - cmsis-freertos/blob - Source/include/stdint.readme
Updated pack to FreeRTOS 10.3.1
[cmsis-freertos] / Source / include / stdint.readme
1
2 #ifndef FREERTOS_STDINT
3 #define FREERTOS_STDINT
4
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.
9  *
10  * To use this file:
11  *
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
14  *       path.
15  *
16  *    2) Rename the copied file stdint.h.
17  *
18  */
19
20 typedef signed char int8_t;
21 typedef unsigned char uint8_t;
22 typedef short int16_t;
23 typedef unsigned short uint16_t;
24 typedef long int32_t;
25 typedef unsigned long uint32_t;
26
27 #endif /* FREERTOS_STDINT */