Skip to content
Snippets Groups Projects
Commit d10107df authored by q3k's avatar q3k
Browse files

usermodule/bl00mbox: fix includes

parent 6cbc52f8
No related branches found
No related tags found
No related merge requests found
...@@ -106,6 +106,7 @@ set(IDF_COMPONENTS ...@@ -106,6 +106,7 @@ set(IDF_COMPONENTS
flow3r_bsp flow3r_bsp
st3m st3m
ctx ctx
bl00mbox
app_update app_update
bootloader_support bootloader_support
......
# If you want to add dependencies on other ESP-IDF modules, add them to # If you want to add dependencies on other ESP-IDF modules, add them to
# IDF_COMPONENTS in main/CMakeLists, as main/ is the component that the # IDF_COMPONENTS in components/micropython/CMakeLists.txt, that is the component
# usermodules are actually part of. # that the usermodules are actually part of.
add_library(usermod_badge23 INTERFACE) add_library(usermod_badge23 INTERFACE)
......
#include <stdio.h> #include <stdio.h>
#include "py/runtime.h" #include "py/runtime.h"
#include "py/obj.h" #include "py/obj.h"
// sorry ;w;
#include "badge23/../../../bl00mbox/include/bl00mbox.h" #include "bl00mbox.h"
#include "badge23/../../../bl00mbox/buds/tinysynth/tinysynth.h" #include "tinysynth.h"
#if !MICROPY_ENABLE_FINALISER #if !MICROPY_ENABLE_FINALISER
#error "BADGE23_SYNTH requires MICROPY_ENABLE_FINALISER" #error "BADGE23_SYNTH requires MICROPY_ENABLE_FINALISER"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment