mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
893003357a
Makes the entirety of the wl API runnable on host. Flash emulator is separated into spi_flash component directory to be reused by other storage components.
22 lines
221 B
C
22 lines
221 B
C
#include "sys/lock.h"
|
|
|
|
void _lock_acquire(_lock_t *lock)
|
|
{
|
|
return;
|
|
}
|
|
|
|
void _lock_close(_lock_t *lock)
|
|
{
|
|
return;
|
|
}
|
|
|
|
void _lock_init(_lock_t *lock)
|
|
{
|
|
return;
|
|
}
|
|
|
|
void _lock_release(_lock_t *lock)
|
|
{
|
|
return;
|
|
}
|