Skip to content

Commit

Permalink
fix stack... again
Browse files Browse the repository at this point in the history
  • Loading branch information
paxo-rch committed Oct 25, 2024
1 parent fc14763 commit 70952a7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/tasks/src/threads.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

void ThreadManager::init()
{
new_thread(CORE_BACK, &ThreadManager::simcom_thread, 8*1024);
new_thread(CORE_BACK, &ThreadManager::simcom_thread, 32*1024);
new_thread(CORE_BACK, &ThreadManager::background_thread, 8*1024);
}

Expand Down
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ void mainLoop(void* data) {
// Check if OOBE app need to be launched
if (!systemConfig.has("oobe") || !systemConfig.get<bool>("oobe")) {
// Launch OOBE app
const std::shared_ptr<AppManager::App> oobeApp = AppManager::get(".oobe");

try {
const std::shared_ptr<AppManager::App> oobeApp = AppManager::get(".oobe");

oobeApp->run(false);
} catch (std::runtime_error& e) {
std::cerr << "Lua error: " << e.what() << std::endl;
Expand Down
Binary file added storage/sys_apps/settings.zip
Binary file not shown.

0 comments on commit 70952a7

Please sign in to comment.