FreeRTOS v_8.2.1 for LPC1768
Dependents: frtos_v_8_bluetooth frtos_v_8_pololu frtos_v_8_Final
source/include/stdint.readme
- Committer:
- JoaoJardim
- Date:
- 2018-12-10
- Revision:
- 1:2f4de0d9dc8b
- Parent:
- 0:91ad48ad5687
File content as of revision 1:2f4de0d9dc8b:
#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 */