You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
diff --git a/cores/arduino/zephyrCommon.cpp b/cores/arduino/zephyrCommon.cpp
index a9c053b..7e47fcc 100644
--- a/cores/arduino/zephyrCommon.cpp+++ b/cores/arduino/zephyrCommon.cpp@@ -6,6 +6,9 @@
#include "Arduino.h"
+void yield(void) {}+//empty+
/*
* The ACTIVE_HIGH flag is set so that A low physical
* level on the pin will be interpreted as value 0.
The text was updated successfully, but these errors were encountered:
beriberikix
changed the title
building external library fails with yeild not implemented errors
building external library fails with yield not implemented errors
Aug 29, 2022
* Fixes#40
* yield(): causes the current thread to yield execution to another thread of the same or higher priority.
If there are no other ready threads of the same or higher priority, the routine returns immediately.
* Also replace include Arduino "" with <>.
Signed-off-by: Dhruva Gole <[email protected]>
* Fixes#40
* yield(): causes the current thread to yield execution to another thread of the same or higher priority.
If there are no other ready threads of the same or higher priority, the routine returns immediately.
* Also replace include Arduino "" with <>.
Signed-off-by: Dhruva Gole <[email protected]>
Fix is to just:
The text was updated successfully, but these errors were encountered: