mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-15 22:44:19 +00:00
freertos: update module handles to struct type
This commit updates the handles for the timer, task and event_group modules to struct type. This matches upstream freertos source. Signed-off-by: Sudeep Mohanty <sudeep.mohanty@espressif.com>
This commit is contained in:
@@ -84,11 +84,8 @@
|
||||
* \ingroup EventGroup
|
||||
*/
|
||||
struct EventGroupDef_t;
|
||||
#ifdef ESP_PLATFORM // IDF-3770
|
||||
typedef void * EventGroupHandle_t;
|
||||
#else
|
||||
typedef struct EventGroupDef_t * EventGroupHandle_t;
|
||||
#endif // ESP_PLATFORM
|
||||
typedef struct EventGroupDef_t * EventGroupHandle_t;
|
||||
|
||||
/*
|
||||
* The type that holds event bits always matches TickType_t - therefore the
|
||||
* number of bits it holds is set by configUSE_16_BIT_TICKS (16 bits if set to 1,
|
||||
|
Reference in New Issue
Block a user