diff options
author | Cristian Maglie <c.maglie@bug.st> | 2012-11-02 18:12:21 +0100 |
---|---|---|
committer | Cristian Maglie <c.maglie@bug.st> | 2012-11-02 18:12:21 +0100 |
commit | 69aead513de2f646a186eaacc40fa7c5a3ef5db2 (patch) | |
tree | 06d8c02b9666ec7264ca51bd50c210fffac65947 /cores/arduino/Arduino.h | |
parent | 6e2b0e87555a6cbd839328960bc75d21cb53f88b (diff) |
Added general yield()-hook for cooperative scheduling development (part 2)
Diffstat (limited to 'cores/arduino/Arduino.h')
-rwxr-xr-x | cores/arduino/Arduino.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cores/arduino/Arduino.h b/cores/arduino/Arduino.h index 908c66e..02c2a8f 100755 --- a/cores/arduino/Arduino.h +++ b/cores/arduino/Arduino.h @@ -15,7 +15,7 @@ extern "C"{ #endif -#define yield() +void yield(void); #define HIGH 0x1 #define LOW 0x0 |