Merge develop into main (#6)

- Update TactilitySDK to `0.6.0-SNAPSHOT10`: Refactor `tt_app_registration()` for the related changes
- Fix for Diceware app hanging
- Deleted unused `assets/` in HelloWorld app
This commit is contained in:
Ken Van Hoeylandt
2025-10-05 21:16:39 +02:00
committed by GitHub
parent 37c5002c5d
commit e1579d3cbd
12 changed files with 44 additions and 52 deletions
+4 -1
View File
@@ -72,6 +72,7 @@ void Application::cleanupJob() {
if (jobThread != nullptr) {
tt_thread_join(jobThread, TT_MAX_TICKS);
tt_thread_free(jobThread);
jobThread = nullptr;
}
}
@@ -178,4 +179,6 @@ void Application::onShow(AppHandle appHandle, lv_obj_t* parent) {
lv_obj_set_style_text_align(resultLabel, LV_TEXT_ALIGN_CENTER, LV_STATE_DEFAULT);
}
void Application::onHide(AppHandle context) { cleanupJob(); }
void Application::onHide(AppHandle context) {
cleanupJob();
}