diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-12-03 18:44:41 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-12-03 18:44:41 +0100 |
commit | 225b3a3742ab60473503fdb707c6fe941a4bb88f (patch) | |
tree | f74298b7e16fd96e9e0322143b3302a84c8fcfdd /src/test1/inc/FreeRTOS/Source/include/stdint.readme | |
parent | 3ec59138f18c8c622306455390aab69d0cf252a8 (diff) | |
download | glutte-o-matic-225b3a3742ab60473503fdb707c6fe941a4bb88f.tar.gz glutte-o-matic-225b3a3742ab60473503fdb707c6fe941a4bb88f.tar.bz2 glutte-o-matic-225b3a3742ab60473503fdb707c6fe941a4bb88f.zip |
Add test1 example
Diffstat (limited to 'src/test1/inc/FreeRTOS/Source/include/stdint.readme')
-rw-r--r-- | src/test1/inc/FreeRTOS/Source/include/stdint.readme | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/test1/inc/FreeRTOS/Source/include/stdint.readme b/src/test1/inc/FreeRTOS/Source/include/stdint.readme new file mode 100644 index 0000000..6d86149 --- /dev/null +++ b/src/test1/inc/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 */
|