mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-13 13:01:55 +03:00
emulation: add fake cont_yield (#6210)
* emulation: add fake cont_yield (temporarily disable littleFS mock due to missing file) * fix makefile
This commit is contained in:
@ -63,3 +63,9 @@ extern "C" void delayMicroseconds(unsigned int us)
|
||||
{
|
||||
usleep(us);
|
||||
}
|
||||
|
||||
#include "cont.h"
|
||||
cont_t* g_pcont = NULL;
|
||||
extern "C" void cont_yield(cont_t*)
|
||||
{
|
||||
}
|
||||
|
Reference in New Issue
Block a user