]> rtime.felk.cvut.cz Git - pes-rpp/rpp-lib.git/blobdiff - os/8.2.2/include/os/stdint.readme
Add FreeRTOS 8.2.2
[pes-rpp/rpp-lib.git] / os / 8.2.2 / include / os / stdint.readme
diff --git a/os/8.2.2/include/os/stdint.readme b/os/8.2.2/include/os/stdint.readme
new file mode 100644 (file)
index 0000000..6d86149
--- /dev/null
@@ -0,0 +1,27 @@
+\r
+#ifndef FREERTOS_STDINT\r
+#define FREERTOS_STDINT\r
+\r
+/*******************************************************************************\r
+ * THIS IS NOT A FULL stdint.h IMPLEMENTATION - It only contains the definitions\r
+ * necessary to build the FreeRTOS code.  It is provided to allow FreeRTOS to be\r
+ * built using compilers that do not provide their own stdint.h definition.\r
+ *\r
+ * To use this file:\r
+ *\r
+ *    1) Copy this file into the directory that contains your FreeRTOSConfig.h\r
+ *       header file, as that directory will already be in the compilers include\r
+ *       path.\r
+ *\r
+ *    2) Rename the copied file stdint.h.\r
+ *\r
+ */\r
+\r
+typedef signed char int8_t;\r
+typedef unsigned char uint8_t;\r
+typedef short int16_t;\r
+typedef unsigned short uint16_t;\r
+typedef long int32_t;\r
+typedef unsigned long uint32_t;\r
+\r
+#endif /* FREERTOS_STDINT */\r