summaryrefslogtreecommitdiffstats
path: root/pico-watch.cpp
diff options
context:
space:
mode:
authorConfuSomu2021-03-28 14:12:21 -0400
committerConfuSomu2021-03-28 14:12:21 -0400
commit75ce3a1f3c4bf01d2595f81bf2012fb7a8fa7f81 (patch)
tree0e73002800f1c48bc3256bdc942ac1f4e5a12043 /pico-watch.cpp
parent1d4608796a66ac5ad641eaec6b141a18cc30594a (diff)
downloadpico-watch-75ce3a1f3c4bf01d2595f81bf2012fb7a8fa7f81.tar
pico-watch-75ce3a1f3c4bf01d2595f81bf2012fb7a8fa7f81.tar.gz
pico-watch-75ce3a1f3c4bf01d2595f81bf2012fb7a8fa7f81.zip
Fix possible race condition when switching app
Diffstat (limited to 'pico-watch.cpp')
-rw-r--r--pico-watch.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/pico-watch.cpp b/pico-watch.cpp
index 1469856..87d0965 100644
--- a/pico-watch.cpp
+++ b/pico-watch.cpp
@@ -13,6 +13,7 @@
int current_app = 0;
bool is_sleeping = false;
bool app_ready = true;
+bool app_rendering = false;
Api app_api;
#define NUMBER_OF_APPS 2
@@ -77,6 +78,7 @@ bool repeating_callback(struct repeating_timer *t) {
void app_switch(int old_appid, int new_appid) {
app_ready = false;
+ while (app_rendering); // Wait for the app to finish rendering cycle
if (APPS_DESTROY_ON_EXIT[old_appid]) {
app_destroy(old_appid);
}
@@ -97,8 +99,10 @@ int main() {
while (1) {
if (app_ready && !is_sleeping) {
- app_render(current_app); // FIXME: This may cause race conditions when switching app
+ app_rendering = true;
+ app_render(current_app);
app_api.display_write_backbuffer();
+ app_rendering = false;
}
sleep_ms(app_api.performance_render_interval_get());
}