osupdate: 12KB stack should be enough

This commit is contained in:
Thomas Farstrike
2025-05-13 13:20:43 +02:00
parent b40d0c47eb
commit a981150103
@@ -89,7 +89,7 @@ def update_with_lvgl(url):
def install_button_click(download_url):
print(f"install_button_click for url {download_url}")
try:
_thread.stack_size(16384)
_thread.stack_size(12*1024)
_thread.start_new_thread(update_with_lvgl, (download_url,))
except Exception as e:
print("Could not start update_with_lvgl thread: ", e)