Skip to content

Commit 531b0ee

Browse files
committed
!!!WIP!!!
Signed-off-by: simonmicro <simon@simonmicro.de>
1 parent 8000970 commit 531b0ee

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

src/main.cpp

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@
8787

8888
// get global variables (make sure to NOT include any headers after the "using" statements!)
8989
#include "globals.h"
90+
#include <apps/tests/OswAppTestProgressWidget.h>
9091
using OswGlobals::main_mainDrawer;
9192
using OswGlobals::main_tutorialApp;
9293

@@ -132,10 +133,12 @@ void setup() {
132133
}
133134

134135
// Install drawer and (maybe) jump into tutorial
135-
OswUI::getInstance()->setRootApplication(&main_mainDrawer);
136-
main_tutorialApp.reset(new OswAppTutorial());
137-
if(!main_tutorialApp->changeRootAppIfNecessary())
138-
main_tutorialApp.reset(); // no need to keep it around, as it's not the root app
136+
// OswUI::getInstance()->setRootApplication(&main_mainDrawer);
137+
// main_tutorialApp.reset(new OswAppTutorial());
138+
// if(!main_tutorialApp->changeRootAppIfNecessary())
139+
// main_tutorialApp.reset(); // no need to keep it around, as it's not the root app
140+
static OswAppTestProgressWidget test;
141+
OswUI::getInstance()->setRootApplication(&test);
139142

140143
#if USE_ULP == 1
141144
// register the ULP program

0 commit comments

Comments
 (0)