Files
inav/lib/main/STM32H7/Drivers/CMSIS/DSP/interpol.cmake
T
admin dac37fd077
Make sure docs are updated / settings_md (push) Canceled after 0s
Build firmware / test (push) Canceled after 0s
Build firmware / build-SITL-Windows (push) Canceled after 0s
Build firmware / build-SITL-Mac (push) Canceled after 0s
Build firmware / build-SITL-Linux (push) Canceled after 0s
Build firmware / build-SITL-Linux-arm64 (push) Canceled after 0s
Build firmware / upload-artifacts (push) Canceled after 0s
Build firmware / build-single-target (push) Canceled after 0s
Build firmware / build (9) (push) Canceled after 0s
Build firmware / build (8) (push) Canceled after 0s
Build firmware / build (7) (push) Canceled after 0s
Build firmware / build (6) (push) Canceled after 0s
Build firmware / build (5) (push) Canceled after 0s
Build firmware / build (4) (push) Canceled after 0s
Build firmware / build (3) (push) Canceled after 0s
Build firmware / build (2) (push) Canceled after 0s
Build firmware / build (14) (push) Canceled after 0s
Build firmware / build (13) (push) Canceled after 0s
Build firmware / build (12) (push) Canceled after 0s
Build firmware / build (11) (push) Canceled after 0s
Build firmware / build (10) (push) Canceled after 0s
Build firmware / build (1) (push) Canceled after 0s
Build firmware / build (0) (push) Canceled after 0s
Build firmware / detect (push) Canceled after 0s
Build pre-release / build (push) Canceled after 0s
Build pre-release / Release (push) Canceled after 0s
Sync inav to Gitea
2026-08-03 16:37:40 +08:00

43 lines
1.1 KiB
CMake

function(interpol PROJECT)
if (CONFIGTABLE AND ARM_COS_F32)
target_compile_definitions(${PROJECT} PUBLIC ARM_TABLE_SIN_F32)
endif()
if (CONFIGTABLE AND ARM_COS_Q31)
target_compile_definitions(${PROJECT} PUBLIC ARM_TABLE_SIN_Q31)
endif()
if (CONFIGTABLE AND ARM_COS_Q15)
target_compile_definitions(${PROJECT} PUBLIC ARM_TABLE_SIN_Q15)
endif()
if (CONFIGTABLE AND ARM_SIN_F32)
target_compile_definitions(${PROJECT} PUBLIC ARM_TABLE_SIN_F32)
endif()
if (CONFIGTABLE AND ARM_SIN_Q31)
target_compile_definitions(${PROJECT} PUBLIC ARM_TABLE_SIN_Q31)
endif()
if (CONFIGTABLE AND ARM_SIN_Q15)
target_compile_definitions(${PROJECT} PUBLIC ARM_TABLE_SIN_Q15)
endif()
if (CONFIGTABLE AND ARM_SIN_COS_F32)
target_compile_definitions(${PROJECT} PUBLIC ARM_TABLE_SIN_F32)
endif()
if (CONFIGTABLE AND ARM_SIN_COS_Q31)
target_compile_definitions(${PROJECT} PUBLIC ARM_TABLE_SIN_Q31)
endif()
if (CONFIGTABLE AND ARM_LMS_NORM_Q31)
target_compile_definitions(${PROJECT} PUBLIC ARM_TABLE_RECIP_Q31)
endif()
if (CONFIGTABLE AND ARM_LMS_NORM_Q15)
target_compile_definitions(${PROJECT} PUBLIC ARM_TABLE_RECIP_Q15)
endif()
endfunction()