mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-07-18 04:52:18 +02:00
esp_modem: Update Task handle and Event Group handle to match freertos v10.4.3
This commit updates the default handles for Task type and Signal Group type to match the struct type handle from freertos v10.4.3. Signed-off-by: Sudeep Mohanty <sudeep.mohanty@espressif.com>
This commit is contained in:
@ -43,8 +43,8 @@ struct Lock {
|
|||||||
private:
|
private:
|
||||||
MutexT m{};
|
MutexT m{};
|
||||||
};
|
};
|
||||||
using TaskT = void*;
|
using TaskT = TaskHandle_t;
|
||||||
using SignalT = void*;
|
using SignalT = EventGroupHandle_t;
|
||||||
#else
|
#else
|
||||||
using Lock = std::mutex;
|
using Lock = std::mutex;
|
||||||
struct SignalGroupInternal;
|
struct SignalGroupInternal;
|
||||||
|
Reference in New Issue
Block a user