Files

copied
Last update 5 months 2 weeks by Masakatsu Honda
FilesCubeMXpassion-v2-1DriversCMSISDSPSourceBasicMathFunctions
..
BasicMathFunctions.c
BasicMathFunctionsF16.c
CMakeLists.txt
arm_abs_f16.c
arm_abs_f32.c
arm_abs_f64.c
arm_abs_q15.c
arm_abs_q31.c
arm_abs_q7.c
arm_add_f16.c
arm_add_f32.c
arm_add_f64.c
arm_add_q15.c
arm_add_q31.c
arm_add_q7.c
arm_and_u16.c
arm_and_u32.c
arm_and_u8.c
arm_clip_f16.c
arm_clip_f32.c
arm_clip_q15.c
arm_clip_q31.c
arm_clip_q7.c
arm_dot_prod_f16.c
arm_dot_prod_f32.c
arm_dot_prod_f64.c
arm_dot_prod_q15.c
arm_dot_prod_q31.c
arm_dot_prod_q7.c
arm_mult_f16.c
arm_mult_f32.c
arm_mult_f64.c
arm_mult_q15.c
arm_mult_q31.c
arm_mult_q7.c
arm_negate_f16.c
arm_negate_f32.c
arm_negate_f64.c
arm_negate_q15.c
arm_negate_q31.c
arm_negate_q7.c
arm_not_u16.c
arm_not_u32.c
arm_not_u8.c
arm_offset_f16.c
arm_offset_f32.c
arm_offset_f64.c
arm_offset_q15.c
arm_offset_q31.c
arm_offset_q7.c
arm_or_u16.c
arm_or_u32.c
arm_or_u8.c
arm_scale_f16.c
arm_scale_f32.c
arm_scale_f64.c
arm_scale_q15.c
arm_scale_q31.c
arm_scale_q7.c
arm_shift_q15.c
arm_shift_q31.c
arm_shift_q7.c
arm_sub_f16.c
arm_sub_f32.c
arm_sub_f64.c
arm_sub_q15.c
arm_sub_q31.c
arm_sub_q7.c
arm_xor_u16.c
arm_xor_u32.c
arm_xor_u8.c
CMakeLists.txt
cmake_minimum_required (VERSION 3.14) project(CMSISDSPBasicMath) include(configLib) include(configDsp) file(GLOB SRCF64 "./*_f64.c") file(GLOB SRCF32 "./*_f32.c") file(GLOB SRCF16 "./*_f16.c") file(GLOB SRCQ31 "./*_q31.c") file(GLOB SRCQ15 "./*_q15.c") file(GLOB SRCQ7 "./*_q7.c") file(GLOB SRCU32 "./*_u32.c") file(GLOB SRCU16 "./*_u16.c") file(GLOB SRCU8 "./*_u8.c") add_library(CMSISDSPBasicMath STATIC ${SRCF64}) target_sources(CMSISDSPBasicMath PRIVATE ${SRCF32}) if ((NOT ARMAC5) AND (NOT DISABLEFLOAT16)) target_sources(CMSISDSPBasicMath PRIVATE ${SRCF16}) endif() target_sources(CMSISDSPBasicMath PRIVATE ${SRCQ31}) target_sources(CMSISDSPBasicMath PRIVATE ${SRCQ15}) target_sources(CMSISDSPBasicMath PRIVATE ${SRCQ7}) target_sources(CMSISDSPBasicMath PRIVATE ${SRCU32}) target_sources(CMSISDSPBasicMath PRIVATE ${SRCU16}) target_sources(CMSISDSPBasicMath PRIVATE ${SRCU8}) configLib(CMSISDSPBasicMath ${ROOT}) configDsp(CMSISDSPBasicMath ${ROOT}) ### Includes target_include_directories(CMSISDSPBasicMath PUBLIC "${DSP}/Include")
Report a bug