From ea807de65b0485ac58b6eae576209c64d4d5c4e9 Mon Sep 17 00:00:00 2001 From: Oxore Date: Sun, 5 Mar 2023 20:20:45 +0300 Subject: Split app code and third party libraries --- Libraries/FreeRTOS/include/stdint.readme | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 Libraries/FreeRTOS/include/stdint.readme (limited to 'Libraries/FreeRTOS/include/stdint.readme') diff --git a/Libraries/FreeRTOS/include/stdint.readme b/Libraries/FreeRTOS/include/stdint.readme deleted file mode 100644 index 4414c29..0000000 --- a/Libraries/FreeRTOS/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 */ -- cgit v1.2.3