Skip to content

Commit

Permalink
get the cmsis macros the right way
Browse files Browse the repository at this point in the history
  • Loading branch information
jepler committed Apr 5, 2023
1 parent 14637cd commit 587e5ab
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions shared-module/audiomixer/Mixer.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,9 @@

#include "py/runtime.h"
#include "shared-module/audiocore/__init__.h"
#include "shared-module/audiocore/RawSample.h"

#if (defined(__ARM_ARCH_7EM__) && (__ARM_ARCH_7EM__ == 1))
#include "periph.h"
#if __arm__
#include "cmsis_compiler.h"
#endif

void common_hal_audiomixer_mixer_construct(audiomixer_mixer_obj_t *self,
Expand Down

0 comments on commit 587e5ab

Please sign in to comment.