Skip to content

Commit a981150

Browse files
osupdate: 12KB stack should be enough
1 parent b40d0c4 commit a981150

File tree

1 file changed

+1
-1
lines changed
  • internal_filesystem/builtin/apps/com.example.osupdate/assets

1 file changed

+1
-1
lines changed

internal_filesystem/builtin/apps/com.example.osupdate/assets/osupdate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def progress_callback(percent):
8989
def install_button_click(download_url):
9090
print(f"install_button_click for url {download_url}")
9191
try:
92-
_thread.stack_size(16384)
92+
_thread.stack_size(12*1024)
9393
_thread.start_new_thread(update_with_lvgl, (download_url,))
9494
except Exception as e:
9595
print("Could not start update_with_lvgl thread: ", e)

0 commit comments

Comments
 (0)