forked from espressif/arduino-esp32
Update IDF to a0468b2 (#2108)
* Update IDF to a0468b2 * add missing ld file * Fix PIO builds and change coex policy
This commit is contained in:
@ -275,6 +275,17 @@ err_t sys_mbox_trypost(sys_mbox_t *mbox, void *msg);
|
||||
* The returned time has to be accurate to prevent timer jitter!
|
||||
*/
|
||||
u32_t sys_arch_mbox_fetch(sys_mbox_t *mbox, void **msg, u32_t timeout);
|
||||
|
||||
#if ESP_THREAD_SAFE
|
||||
/**
|
||||
* @ingroup sys_mbox
|
||||
* Set the owner of the mbox
|
||||
* @param mbox mbox to set the owner
|
||||
* @param owner the owner of the mbox, it's a pointer to struct netconn
|
||||
*/
|
||||
void sys_mbox_set_owner(sys_mbox_t *mbox, void *owner);
|
||||
#endif
|
||||
|
||||
/* Allow port to override with a macro, e.g. special timeout for sys_arch_mbox_fetch() */
|
||||
#ifndef sys_arch_mbox_tryfetch
|
||||
/**
|
||||
|
Reference in New Issue
Block a user