summaryrefslogtreecommitdiff
path: root/supervisor/shared/tick.c
diff options
context:
space:
mode:
authorJeff Epler <jeff@adafruit.com>2021-03-15 13:50:49 -0500
committerGitHub <noreply@github.com>2021-03-15 13:50:49 -0500
commit05ed179e11599dd45a76dfb14ecf624d0ff96d68 (patch)
treea046c6d1f117814168150484ed1bf7840d3400d7 /supervisor/shared/tick.c
parent3cbff45f9aac5ea2855bbc888083d356a91c80fe (diff)
parentf9b4189b4c640823dabb76de8effd2a836da2eb0 (diff)
Merge pull request #4362 from microDev1/code-formatting
Add code formatting and translations check
Diffstat (limited to 'supervisor/shared/tick.c')
-rw-r--r--supervisor/shared/tick.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/supervisor/shared/tick.c b/supervisor/shared/tick.c
index e51c48c73..f40151988 100644
--- a/supervisor/shared/tick.c
+++ b/supervisor/shared/tick.c
@@ -105,13 +105,13 @@ bool supervisor_background_tasks_ok(void) {
}
void supervisor_tick(void) {
-#if CIRCUITPY_FILESYSTEM_FLUSH_INTERVAL_MS > 0
+ #if CIRCUITPY_FILESYSTEM_FLUSH_INTERVAL_MS > 0
filesystem_tick();
-#endif
-#ifdef CIRCUITPY_AUTORELOAD_DELAY_MS
+ #endif
+ #ifdef CIRCUITPY_AUTORELOAD_DELAY_MS
autoreload_tick();
-#endif
-#ifdef CIRCUITPY_GAMEPAD_TICKS
+ #endif
+ #ifdef CIRCUITPY_GAMEPAD_TICKS
if (!(port_get_raw_ticks(NULL) & CIRCUITPY_GAMEPAD_TICKS)) {
#if CIRCUITPY_GAMEPAD
gamepad_tick();
@@ -120,7 +120,7 @@ void supervisor_tick(void) {
gamepadshift_tick();
#endif
}
-#endif
+ #endif
background_callback_add(&tick_callback, supervisor_background_tasks, NULL);
}