diff options
author | ConfuSomu | 2024-02-28 16:57:59 -0500 |
---|---|---|
committer | ConfuSomu | 2024-02-28 16:58:58 -0500 |
commit | 7f695506f6b7db9368c4c3c2af7ce3a02f2db37b (patch) | |
tree | 9fe31fe34f3e9db349934b73750348b4ef3c7677 | |
parent | 9873cd86c33a669c95ff5421fd6b91c59f80354f (diff) | |
download | pico-watch-7f695506f6b7db9368c4c3c2af7ce3a02f2db37b.tar pico-watch-7f695506f6b7db9368c4c3c2af7ce3a02f2db37b.tar.gz pico-watch-7f695506f6b7db9368c4c3c2af7ce3a02f2db37b.zip |
-rw-r--r-- | pico-watch.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/pico-watch.cpp b/pico-watch.cpp index 282ae4e..5995388 100644 --- a/pico-watch.cpp +++ b/pico-watch.cpp @@ -7,7 +7,6 @@ #include "pico/util/datetime.h" #include "hardware/sync.h" #else -#include <chrono> #include <thread> #include <iostream> #endif @@ -42,9 +41,6 @@ bool cb_status_check(struct repeating_timer *t) { } int main() { -#ifdef SDL2_BUILD - using namespace std::chrono_literals; -#endif init_all(); printf("~~~==~~~"); std::cerr << std::endl; @@ -69,7 +65,7 @@ int main() { #ifndef SDL2_BUILD __wfi(); #else - ;//std::this_thread::sleep_for(10ms); + ; #endif else if (g_s.app_switch_requested) { app_mgr::app_switch(g_s.foreground_app, g_s.app_switch_to_app); |