We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14637cd commit 037a249Copy full SHA for 037a249
shared-module/audiomixer/Mixer.c
@@ -33,10 +33,10 @@
33
34
#include "py/runtime.h"
35
#include "shared-module/audiocore/__init__.h"
36
-#include "shared-module/audiocore/RawSample.h"
37
38
-#if (defined(__ARM_ARCH_7EM__) && (__ARM_ARCH_7EM__ == 1))
39
-#include "periph.h"
+#if CIRCUITPY_MICROCONTROLLER
+// This looks hinky, but it's the way that the macros like __QADD16 are made available!
+#include "shared-bindings/microcontroller/Pin.h"
40
#endif
41
42
void common_hal_audiomixer_mixer_construct(audiomixer_mixer_obj_t *self,
0 commit comments