Skip to content

Commit 70952a7

Browse files
committed
fix stack... again
1 parent fc14763 commit 70952a7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/tasks/src/threads.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
void ThreadManager::init()
2626
{
27-
new_thread(CORE_BACK, &ThreadManager::simcom_thread, 8*1024);
27+
new_thread(CORE_BACK, &ThreadManager::simcom_thread, 32*1024);
2828
new_thread(CORE_BACK, &ThreadManager::background_thread, 8*1024);
2929
}
3030

src/main.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ void mainLoop(void* data) {
6969
// Check if OOBE app need to be launched
7070
if (!systemConfig.has("oobe") || !systemConfig.get<bool>("oobe")) {
7171
// Launch OOBE app
72-
const std::shared_ptr<AppManager::App> oobeApp = AppManager::get(".oobe");
73-
7472
try {
73+
const std::shared_ptr<AppManager::App> oobeApp = AppManager::get(".oobe");
74+
7575
oobeApp->run(false);
7676
} catch (std::runtime_error& e) {
7777
std::cerr << "Lua error: " << e.what() << std::endl;

storage/sys_apps/settings.zip

5.37 KB
Binary file not shown.

0 commit comments

Comments
 (0)