fix(esp8266): Fix wps leaks OSI

This commit is contained in:
dongheng
2019-04-03 16:40:48 +08:00
parent 288b1c89de
commit c43e3c04db
3 changed files with 11 additions and 1 deletions

View File

@ -2,7 +2,7 @@ gwen:
core: eacdf2c
net80211: eacdf2c
pp: eacdf2c
wpa: eacdf2c
wpa: 4dcf668
espnow: eacdf2c
wps: eacdf2c

Binary file not shown.

View File

@ -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;