Files

copied
Last update 5 months 3 weeks by Masakatsu Honda
FilesCubeMXpassion-v2-1DriversCMSISDSPSourceSupportFunctions
..
CMakeLists.txt
SupportFunctions.c
SupportFunctionsF16.c
arm_barycenter_f16.c
arm_barycenter_f32.c
arm_bitonic_sort_f32.c
arm_bubble_sort_f32.c
arm_copy_f16.c
arm_copy_f32.c
arm_copy_f64.c
arm_copy_q15.c
arm_copy_q31.c
arm_copy_q7.c
arm_f16_to_float.c
arm_f16_to_q15.c
arm_fill_f16.c
arm_fill_f32.c
arm_fill_f64.c
arm_fill_q15.c
arm_fill_q31.c
arm_fill_q7.c
arm_float_to_f16.c
arm_float_to_q15.c
arm_float_to_q31.c
arm_float_to_q7.c
arm_heap_sort_f32.c
arm_insertion_sort_f32.c
arm_merge_sort_f32.c
arm_merge_sort_init_f32.c
arm_q15_to_f16.c
arm_q15_to_float.c
arm_q15_to_q31.c
arm_q15_to_q7.c
arm_q31_to_float.c
arm_q31_to_q15.c
arm_q31_to_q7.c
arm_q7_to_float.c
arm_q7_to_q15.c
arm_q7_to_q31.c
arm_quick_sort_f32.c
arm_selection_sort_f32.c
arm_sort_f32.c
arm_sort_init_f32.c
arm_weighted_sum_f16.c
arm_weighted_sum_f32.c
CMakeLists.txt
cmake_minimum_required (VERSION 3.14) project(CMSISDSPSupport) include(configLib) include(configDsp) file(GLOB SRC "./*_*.c") add_library(CMSISDSPSupport STATIC ${SRC}) configLib(CMSISDSPSupport ${ROOT}) configDsp(CMSISDSPSupport ${ROOT}) ### Includes target_include_directories(CMSISDSPSupport PUBLIC "${DSP}/Include") if ((NOT ARMAC5) AND (NOT DISABLEFLOAT16)) target_sources(CMSISDSPSupport PRIVATE arm_copy_f16.c) target_sources(CMSISDSPSupport PRIVATE arm_fill_f16.c) target_sources(CMSISDSPSupport PRIVATE arm_f16_to_q15.c) target_sources(CMSISDSPSupport PRIVATE arm_q15_to_f16.c) target_sources(CMSISDSPSupport PRIVATE arm_float_to_f16.c) target_sources(CMSISDSPSupport PRIVATE arm_f16_to_float.c) target_sources(CMSISDSPSupport PRIVATE arm_weighted_sum_f16.c) target_sources(CMSISDSPSupport PRIVATE arm_barycenter_f16.c) endif()
Report a bug