mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-05-22 01:27:11 +08:00
fix(esp8266): Fix wps leaks OSI
This commit is contained in:
@ -2,7 +2,7 @@ gwen:
|
||||
core: eacdf2c
|
||||
net80211: eacdf2c
|
||||
pp: eacdf2c
|
||||
wpa: eacdf2c
|
||||
wpa: 4dcf668
|
||||
espnow: eacdf2c
|
||||
wps: eacdf2c
|
||||
|
||||
|
Binary file not shown.
@ -36,6 +36,11 @@ void *__wifi_task_create(void *task_func, const char *name, uint32_t stack_depth
|
||||
return ret == pdPASS ? handle : NULL;
|
||||
}
|
||||
|
||||
void __wifi_task_delete(void *task)
|
||||
{
|
||||
vTaskDelete(task);
|
||||
}
|
||||
|
||||
void __wifi_task_yield_from_isr(void)
|
||||
{
|
||||
portYIELD();
|
||||
@ -71,6 +76,11 @@ void *__wifi_queue_create(uint32_t queue_len, uint32_t item_size)
|
||||
return (void *)xQueueCreate(queue_len, item_size);
|
||||
}
|
||||
|
||||
void __wifi_queue_delete(void *queue)
|
||||
{
|
||||
vQueueDelete(queue);
|
||||
}
|
||||
|
||||
int __wifi_queue_send(void *queue, void *item, uint32_t block_time_tick, uint32_t pos)
|
||||
{
|
||||
signed portBASE_TYPE ret;
|
||||
|
Reference in New Issue
Block a user