diff options
author | ConfuSomu | 2021-03-01 23:25:53 -0500 |
---|---|---|
committer | ConfuSomu | 2021-03-01 23:25:53 -0500 |
commit | a304e37c5fb70bb465165105f484a9b2f2c5393f (patch) | |
tree | d96634827617e774b9cfec9202339b9179cca322 | |
parent | 888675141118cb1cabb774cbe0a598ab9b5ca19d (diff) | |
download | pico-watch-a304e37c5fb70bb465165105f484a9b2f2c5393f.tar pico-watch-a304e37c5fb70bb465165105f484a9b2f2c5393f.tar.gz pico-watch-a304e37c5fb70bb465165105f484a9b2f2c5393f.zip |
Use bool in bgrefresh
-rw-r--r-- | apps/home_menu.cpp | 2 | ||||
-rw-r--r-- | apps/home_menu.hpp | 2 | ||||
-rw-r--r-- | apps/main_clock.cpp | 2 | ||||
-rw-r--r-- | apps/main_clock.hpp | 2 | ||||
-rw-r--r-- | pico-watch.cpp | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/apps/home_menu.cpp b/apps/home_menu.cpp index 910ebac..b1b6ca1 100644 --- a/apps/home_menu.cpp +++ b/apps/home_menu.cpp @@ -83,7 +83,7 @@ namespace app_home_menu { } // Processor intensive operations and functions related to drawing to the screen should only be done when the app is in_foreground(=1). This function is only called when the app is init. - int bgrefresh(Api *app_api, char in_foreground) { + int bgrefresh(Api *app_api, bool in_foreground) { return 1; } diff --git a/apps/home_menu.hpp b/apps/home_menu.hpp index 033dc6b..366a248 100644 --- a/apps/home_menu.hpp +++ b/apps/home_menu.hpp @@ -10,7 +10,7 @@ namespace app_home_menu { int init(Api *app_api); int render(Api *app_api); int btnpressed(Api *app_api, uint gpio); - int bgrefresh(Api *app_api, char in_foreground); + int bgrefresh(Api *app_api, bool in_foreground); int destroy(Api *app_api); } diff --git a/apps/main_clock.cpp b/apps/main_clock.cpp index 895a7b9..9fa8f98 100644 --- a/apps/main_clock.cpp +++ b/apps/main_clock.cpp @@ -69,7 +69,7 @@ namespace app_main_clock { } // Processor intensive operations and functions related to drawing to the screen should only be done when the app is in_foreground(=1). This function is only called when the app is init. - int bgrefresh(Api *app_api, char in_foreground) { + int bgrefresh(Api *app_api, bool in_foreground) { return 1; } diff --git a/apps/main_clock.hpp b/apps/main_clock.hpp index 5440c1f..e1d9469 100644 --- a/apps/main_clock.hpp +++ b/apps/main_clock.hpp @@ -10,7 +10,7 @@ namespace app_main_clock { int init(Api *app_api); int render(Api *app_api); int btnpressed(Api *app_api, uint gpio); - int bgrefresh(Api *app_api, char in_foreground); + int bgrefresh(Api *app_api, bool in_foreground); int destroy(Api *app_api); } diff --git a/pico-watch.cpp b/pico-watch.cpp index 9df6799..c6a3aa8 100644 --- a/pico-watch.cpp +++ b/pico-watch.cpp @@ -19,7 +19,7 @@ Api app_api; int (*APPS_FUNC_INIT[NUMBER_OF_APPS])(Api *app_api) = {app_home_menu::init, app_main_clock::init}; int (*APPS_FUNC_RENDER[NUMBER_OF_APPS])(Api *app_api) = {app_home_menu::render, app_main_clock::render}; int (*APPS_FUNC_BTNPRESS[NUMBER_OF_APPS])(Api *app_api, uint gpio) = {app_home_menu::btnpressed, app_main_clock::btnpressed}; -int (*APPS_FUNC_BGREFRESH[NUMBER_OF_APPS])(Api *app_api, char in_foreground) = {app_home_menu::bgrefresh, app_main_clock::bgrefresh}; +int (*APPS_FUNC_BGREFRESH[NUMBER_OF_APPS])(Api *app_api, bool in_foreground) = {app_home_menu::bgrefresh, app_main_clock::bgrefresh}; int (*APPS_FUNC_DESTROY[NUMBER_OF_APPS])(Api *app_api) = {app_home_menu::destroy, app_main_clock::destroy}; int APPS_DESTROY_ON_EXIT[NUMBER_OF_APPS] = {0, 1}; int APPS_IS_INIT[NUMBER_OF_APPS] = {0, 0}; // Only run in background if init |