From a57cc2c988482010061b9e68344fdf1969889763 Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Tue, 12 Jan 2016 14:06:54 -0800 Subject: initial commit, FreeRTOS_BSP_1.0.0_iMX7D --- rtos/FreeRTOS/Source/include/stdint.readme | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 rtos/FreeRTOS/Source/include/stdint.readme (limited to 'rtos/FreeRTOS/Source/include/stdint.readme') diff --git a/rtos/FreeRTOS/Source/include/stdint.readme b/rtos/FreeRTOS/Source/include/stdint.readme new file mode 100644 index 0000000..4414c29 --- /dev/null +++ b/rtos/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 */ -- cgit v1.2.3