-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mbed OS #1
Comments
I hadn't actually thought about this until seeing your comment. Mbed OS is pretty invested in the whole deep integration with an RTOS thing. Nothing stops you from adding coru to an mbed project, but without the driver integration it may not be that useful. What we really need is a way to hook into wait calls similarly to what the RTOS does. But I don't think I will be able to put up a PR anytime soon. |
Eh, I created a PR: ARMmbed/mbed-os#10693 We'll see if that goes through. With it you can hook in coru with this function: #include "coru.h"
void mbed_override_wait_hook() {
coru_yield();
} |
Related issues:
|
Ah interesting, #9141 is related. I haven't forgotten about ARMmbed/mbed-os#10263, but I've been working through a backlog so it's taking me a while to get to everything. |
When's it getting into mbed os?
The text was updated successfully, but these errors were encountered: