diff options
| author | jacqueline <me@jacqueline.id.au> | 2022-11-23 17:15:06 +1100 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2022-11-23 17:15:06 +1100 |
| commit | a7df2855889055976956a58d2a36f23626371ee9 (patch) | |
| tree | 16e180e57f84474acaeb1893208cc07e278af6f4 /src/main | |
| parent | dfa9ab6e04689b99267092e016a91d9254f94cd8 (diff) | |
| download | tangara-fw-a7df2855889055976956a58d2a36f23626371ee9.tar.gz | |
Mostly done pipeline arch. Now onto cleanup and building.
Diffstat (limited to 'src/main')
| -rw-r--r-- | src/main/app_console.cpp | 4 | ||||
| -rw-r--r-- | src/main/app_console.hpp | 6 | ||||
| -rw-r--r-- | src/main/main.cpp | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/main/app_console.cpp b/src/main/app_console.cpp index 765b17d2..fbb8df87 100644 --- a/src/main/app_console.cpp +++ b/src/main/app_console.cpp @@ -83,7 +83,7 @@ int CmdToggle(int argc, char** argv) { return 1; } - //sInstance->playback_->Toggle(); + // sInstance->playback_->Toggle(); return 0; } @@ -110,7 +110,7 @@ int CmdVolume(int argc, char** argv) { return 1; } - //sInstance->playback_->SetVolume((uint8_t)raw_vol); + // sInstance->playback_->SetVolume((uint8_t)raw_vol); return 0; } diff --git a/src/main/app_console.hpp b/src/main/app_console.hpp index 9cd9d50c..d41810b0 100644 --- a/src/main/app_console.hpp +++ b/src/main/app_console.hpp @@ -2,15 +2,15 @@ #include <memory> -#include "storage.hpp" #include "console.hpp" +#include "storage.hpp" namespace console { class AppConsole : public Console { public: - AppConsole() {}; - virtual ~AppConsole() {}; + AppConsole(){}; + virtual ~AppConsole(){}; protected: virtual auto RegisterExtraComponents() -> void; diff --git a/src/main/main.cpp b/src/main/main.cpp index 62cb430e..79a2f42b 100644 --- a/src/main/main.cpp +++ b/src/main/main.cpp @@ -135,7 +135,7 @@ extern "C" void app_main(void) { console.Launch(); while (1) { - //playback->ProcessEvents(5); + // playback->ProcessEvents(5); vTaskDelay(pdMS_TO_TICKS(100)); } } |
