I see yield is defined in arduino/Arduino.h but not implemented anywhere. I am using ArduinoFake with DallasTemperature, which uses the yield function, which causes the following compile error: undefined reference toyield'`. How is yield supposed to be implemented? I don't care what it does (it won't even be called), but my efforts at implementing it myself with am empty function didn't work.
I see yield is defined in
arduino/Arduino.h
but not implemented anywhere. I am using ArduinoFake with DallasTemperature, which uses theyield
function, which causes the following compile error:undefined reference to
yield'`. How is yield supposed to be implemented? I don't care what it does (it won't even be called), but my efforts at implementing it myself with am empty function didn't work.