• Home
Name Date Size #Lines LOC

..--

atomic.hD12-May-202411.1 KiB419151

deprecated_definitions.hD12-May-20247.1 KiB279180

esp_osal.hD12-May-202442.5 KiB1,330822

event_groups.hD12-May-202427.7 KiB69845

list.hD12-May-202417.7 KiB41297

message_buffer.hD12-May-202433.7 KiB70329

mpu_wrappers.hD12-May-20248.9 KiB187115

portable.hD12-May-20247.8 KiB20488

projdefs.hD12-May-20245.6 KiB12771

queue.hD12-May-202456.1 KiB1,48192

semphr.hD12-May-202445.9 KiB1,10365

stack_macros.hD12-May-20247 KiB14576

stdint.readmeD12-May-2024823 2823

stream_buffer.hD12-May-202434.3 KiB74655

task.hD12-May-2024105.6 KiB2,568230

timers.hD12-May-202456.4 KiB1,25070

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
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