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
Multi task environment for simple applications like beacon/eddystone is kind of overkill and increases ROM/RAM requirements.
Also porting the lib to some new OS becomes challenging when time is scarce.
I would love to have an option to run the entire host stack in single task/thread (similar to LWIP in NO_SYS mode).
Here is the pseudo code that I am after.
intmain(){
AppInit(); // initialize systemNimbleHostInit(conf, transport, callbacks); // initialize nimble hostwhile (true) {
AppTask(); // handle all system operations hereNimbleTask(); // handle all nimble host operations here like read from/write to transport
}
return0;
}
The text was updated successfully, but these errors were encountered:
Multi task environment for simple applications like beacon/eddystone is kind of overkill and increases ROM/RAM requirements.
Also porting the lib to some new OS becomes challenging when time is scarce.
I would love to have an option to run the entire host stack in single task/thread (similar to LWIP in NO_SYS mode).
Here is the pseudo code that I am after.
The text was updated successfully, but these errors were encountered: