Author: NeroBurner <pyro4hell@gmail.com>
MusicService: add missing includes for TickType_t and xTaskGetTickCount (#2130) Add `FreeRTOS.h` include for the directly used data type `TickType_t` in the header and the function `xTaskGetTickCount` from FreeRTOS's `task.h`
src/components/ble/MusicService.cpp | 2 ++ src/components/ble/MusicService.h | 1 +
diff --git a/src/components/ble/MusicService.cpp b/src/components/ble/MusicService.cpp index 94d97f4668f14cf2f399b0b8841ba70c05553a72..43cbec70d613f218bc91e7cc34ddf4a90d477f45 100644 --- a/src/components/ble/MusicService.cpp +++ b/src/components/ble/MusicService.cpp @@ -18,6 +18,8 @@ */ #include "components/ble/MusicService.h" #include "components/ble/NimbleController.h" #include <cstring> +#include <FreeRTOS.h> +#include <task.h> namespace { // 0000yyxx-78fc-48fe-8e23-433b3a1942d0 diff --git a/src/components/ble/MusicService.h b/src/components/ble/MusicService.h index f4b902fedde8d0b3378b8e7d1166ffe06e1af382..93d94a346e8e349e2127630bbf936cba02ea328b 100644 --- a/src/components/ble/MusicService.h +++ b/src/components/ble/MusicService.h @@ -25,6 +25,7 @@ #include#include <host/ble_uuid.h> #undef max #undef min +#include <FreeRTOS.h> namespace Pinetime { namespace Controllers {