diff options
Diffstat (limited to 'src/FreeRTOS.h')
-rw-r--r-- | src/FreeRTOS.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/FreeRTOS.h b/src/FreeRTOS.h index 320f4cc..edaa9df 100644 --- a/src/FreeRTOS.h +++ b/src/FreeRTOS.h @@ -10,9 +10,9 @@ #include <stdint.h> #include <string> -#include <freertos/FreeRTOS.h> -#include <freertos/task.h> -#include <freertos/semphr.h> +#include <freertos/FreeRTOS.h> // Include the base FreeRTOS definitions +#include <freertos/task.h> // Include the task definitions +#include <freertos/semphr.h> // Include the semaphore definitions /** @@ -40,9 +40,9 @@ public: std::string toString(); private: SemaphoreHandle_t m_semaphore; - std::string m_name; - std::string m_owner; - uint32_t m_value; + std::string m_name; + std::string m_owner; + uint32_t m_value; }; }; |