diff options
| author | hathach <[email protected]> | 2018-05-17 15:55:41 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2018-05-17 16:04:15 +0700 |
| commit | 7030d64a95138482c2537f3a1280c94ce36a3c10 (patch) | |
| tree | 2ad27bd8d1e3a009adc70db7ccb424bf1311ec9d /lib/FreeRTOS/Source/include/stdint.readme | |
| parent | b5de2595d3765681a0ad7758758468878f1c3854 (diff) | |
rename vendor to lib
Diffstat (limited to 'lib/FreeRTOS/Source/include/stdint.readme')
| -rw-r--r-- | lib/FreeRTOS/Source/include/stdint.readme | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/lib/FreeRTOS/Source/include/stdint.readme b/lib/FreeRTOS/Source/include/stdint.readme new file mode 100644 index 000000000..4414c29ed --- /dev/null +++ b/lib/FreeRTOS/Source/include/stdint.readme @@ -0,0 +1,27 @@ + +#ifndef FREERTOS_STDINT +#define FREERTOS_STDINT + +/******************************************************************************* + * THIS IS NOT A FULL stdint.h IMPLEMENTATION - It only contains the definitions + * necessary to build the FreeRTOS code. It is provided to allow FreeRTOS to be + * built using compilers that do not provide their own stdint.h definition. + * + * To use this file: + * + * 1) Copy this file into the directory that contains your FreeRTOSConfig.h + * header file, as that directory will already be in the compilers include + * path. + * + * 2) Rename the copied file stdint.h. + * + */ + +typedef signed char int8_t; +typedef unsigned char uint8_t; +typedef short int16_t; +typedef unsigned short uint16_t; +typedef long int32_t; +typedef unsigned long uint32_t; + +#endif /* FREERTOS_STDINT */ |
