summaryrefslogtreecommitdiff
path: root/lib/FreeRTOS/Source/include/stdint.readme
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2020-03-11 12:50:41 +0700
committerGitHub <[email protected]>2020-03-11 12:50:41 +0700
commita0eb8a26517040850a0e4185aef398183b04ddc7 (patch)
tree106767d1dccbb015966c98e8792b9da9d1021af9 /lib/FreeRTOS/Source/include/stdint.readme
parent41d9ab5056c63dc0ecf4b60d55a5f653b561a0c5 (diff)
parent5fa1e6e242f08d340a46b9a8c885b8495dbe2c76 (diff)
Merge pull request #297 from hathach/develop
Added cdc_msc_freertos example to ci build
Diffstat (limited to 'lib/FreeRTOS/Source/include/stdint.readme')
-rw-r--r--lib/FreeRTOS/Source/include/stdint.readme27
1 files changed, 0 insertions, 27 deletions
diff --git a/lib/FreeRTOS/Source/include/stdint.readme b/lib/FreeRTOS/Source/include/stdint.readme
deleted file mode 100644
index 4414c29ed..000000000
--- a/lib/FreeRTOS/Source/include/stdint.readme
+++ /dev/null
@@ -1,27 +0,0 @@
-
-#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 */