summaryrefslogtreecommitdiffstats
path: root/pico-watch.cpp
diff options
context:
space:
mode:
authorConfuSomu2021-04-01 22:01:13 -0400
committerConfuSomu2021-04-01 22:01:13 -0400
commitc4e404a01ea9460443155b5071e38e31129a134a (patch)
treee7f8eb6b5133aff1a759f66517ed0e718c3fb742 /pico-watch.cpp
parentfa922617f6a07a7717285449aa634316f4e17652 (diff)
downloadpico-watch-c4e404a01ea9460443155b5071e38e31129a134a.tar
pico-watch-c4e404a01ea9460443155b5071e38e31129a134a.tar.gz
pico-watch-c4e404a01ea9460443155b5071e38e31129a134a.zip
Add fixme in pico-watch.c
Diffstat (limited to 'pico-watch.cpp')
-rw-r--r--pico-watch.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/pico-watch.cpp b/pico-watch.cpp
index 87d0965..88df2f2 100644
--- a/pico-watch.cpp
+++ b/pico-watch.cpp
@@ -78,6 +78,8 @@ bool repeating_callback(struct repeating_timer *t) {
void app_switch(int old_appid, int new_appid) {
app_ready = false;
+ // FIXME: race condition when pressing on HOME while app is rendering!
+ // The system is blocked waiting for the app to finish rendering, which will never happen. To fix the problem, app switching has to be a flag (c.f struct) that is set, and checked before rendering app. "if (app_switching.requested) app_switch(...);" We will not need anymore the app_rendering flag, as the check is done while the app is not rendering.
while (app_rendering); // Wait for the app to finish rendering cycle
if (APPS_DESTROY_ON_EXIT[old_appid]) {
app_destroy(old_appid);