Commit 6a87f101 authored by Max van Kessel's avatar Max van Kessel Committed by Carles Cufí
Browse files

DSP: Fix invalid CMakeList configuration for arm_sin_cos



Configuration is lacking CONFIG_* to enable compilation of the arm_sin_cos source files.

Signed-off-by: default avatarMax van Kessel <max_van_kessel@msn.com>
parent 542b2296
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -12,5 +12,5 @@ zephyr_library_sources(
  arm_pid_reset_q31.c
  )

zephyr_library_sources_ifdef(CMSIS_DSP_TABLES_ARM_SIN_COS_F32 arm_sin_cos_f32.c)
zephyr_library_sources_ifdef(CMSIS_DSP_TABLES_ARM_SIN_COS_Q31 arm_sin_cos_q31.c)
zephyr_library_sources_ifdef(CONFIG_CMSIS_DSP_TABLES_ARM_SIN_COS_F32 arm_sin_cos_f32.c)
zephyr_library_sources_ifdef(CONFIG_CMSIS_DSP_TABLES_ARM_SIN_COS_Q31 arm_sin_cos_q31.c)