summaryrefslogtreecommitdiff
path: root/supervisor/shared/background_callback.c
diff options
context:
space:
mode:
authorJensen Kuras <jensechu@gmail.com>2020-10-12 20:48:55 -0500
committerGitHub <noreply@github.com>2020-10-12 20:48:55 -0500
commitde9ea47e8eb04abc3e237559ed815ef2dc5fc88d (patch)
tree0dd3b0eecb19288a2f13877196122b608724f8ab /supervisor/shared/background_callback.c
parent337019626a8cd0632cd2a6f6bae4ae09ae26cf16 (diff)
parent9de96786ad578b4e96e8219e48c778a1a556f0cf (diff)
Merge branch 'main' into color-converter-transparency
Diffstat (limited to 'supervisor/shared/background_callback.c')
-rw-r--r--supervisor/shared/background_callback.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/supervisor/shared/background_callback.c b/supervisor/shared/background_callback.c
index 8e12dd362..ef686cbab 100644
--- a/supervisor/shared/background_callback.c
+++ b/supervisor/shared/background_callback.c
@@ -29,6 +29,7 @@
#include "py/gc.h"
#include "py/mpconfig.h"
#include "supervisor/background_callback.h"
+#include "supervisor/linker.h"
#include "supervisor/shared/tick.h"
#include "shared-bindings/microcontroller/__init__.h"
@@ -63,7 +64,7 @@ void background_callback_add(background_callback_t *cb, background_callback_fun
}
static bool in_background_callback;
-void background_callback_run_all() {
+void PLACE_IN_ITCM(background_callback_run_all)() {
if (!callback_head) {
return;
}