~aleteoryx/muditaos

3bcab3b945e6930276816d6c2b5a1149ddac4e6c — Jakub Pyszczak 5 years ago 7513629
[EGD-5794] Fix stack size overflow

There is not enough space in service cellular
stack which is causing debug problems.
1 files changed, 2 insertions(+), 2 deletions(-)

M module-services/service-cellular/ServiceCellular.cpp
M module-services/service-cellular/ServiceCellular.cpp => module-services/service-cellular/ServiceCellular.cpp +2 -2
@@ 1,4 1,4 @@
// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md

#include "CellularUrcHandler.hpp"


@@ 90,7 90,7 @@

const char *ServiceCellular::serviceName = "ServiceCellular";

inline constexpr auto cellularStack = 24000UL;
inline constexpr auto cellularStack = 25000UL;

using namespace cellular;