From ee391920441bb9deb81e66adda8773a1ab50b6ba Mon Sep 17 00:00:00 2001 From: Jochen Vothknecht <jochen3120@gmail.com> Date: Fri, 10 Jun 2022 19:14:02 +0200 Subject: [PATCH] =?UTF-8?q?Adding=20stack-extending=20task-solution=20to?= =?UTF-8?q?=20fix=20a=20stacking-smooshy-smashy=20problem=20=F0=9F=98=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CLC-qthing/device_main.cpp | 27 ++++++++------------------- 1 file changed, 8 insertions(+), 19 deletions(-) diff --git a/CLC-qthing/device_main.cpp b/CLC-qthing/device_main.cpp index 054ba95..6d2e42f 100644 --- a/CLC-qthing/device_main.cpp +++ b/CLC-qthing/device_main.cpp @@ -10,13 +10,11 @@ #include "CyanLight.hpp" #include "SiliconTorch/FxCyanF.hpp" -#include "SpiderLib/NumberTypes.hpp" +#include <SpiderLib.hpp> // ### LIBS FOR TESTING ### #include <cstdlib> -//#include "SpiderLib/SNTP.hpp" -#include "SpiderLib/Util.hpp" #include "SiliconTorch/CyanBus.hpp" @@ -45,7 +43,7 @@ SiliconTorch::CyanBus::CyanBus* cyanBus = NULL; //SiliconTorch::FxPublish::FxPublish* fxPub = NULL; SiliconTorch::FxCyanRGB8::FxCyanRGB8* cyanRGB = NULL; -CyanLight::CyanLightControl* ctrl; +CyanLight::CyanLightControl* ctrl = NULL; @@ -80,22 +78,13 @@ void device_main() { // TODO: ??? - // Trigger singleton initialization - SiliconTorch::NVSExplorer::NVSExplorer::instance(); + // Do it in another task do control stack size + new SpiderLib::Util::LambdaTask([&]() { + // Trigger singleton initialization + SiliconTorch::NVSExplorer::NVSExplorer::instance(); - - //std::set<std::string> namespaces = SiliconTorch::NVSExplorer::NVSExplorer::instance().listNamespaces(); - - //std::string _ns = SiliconTorch::NVSExplorer::toString(namespaces, " ~=[]=~ "); - - //ESP_LOGW("__SET__", "Listing Namespaces: %s", _ns.c_str()); - - - - ctrl = new CyanLight::CyanLightControl(0); - - // auto fxCyanF = (SiliconTorch::FxCyanF::FxCyanF) *ctrl; - // SiliconTorch::FxCyanF::configureFromNVS(fxCyanF); + SiliconTorch::FxCyanF::configureFromNVS(); + }); qthing::enable_wifi(); return; -- GitLab