• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
20typedef signed char int8_t;
21typedef unsigned char uint8_t;
22typedef short int16_t;
23typedef unsigned short uint16_t;
24typedef long int32_t;
25typedef unsigned long uint32_t;
26
27#endif /* FREERTOS_STDINT */
28