# Infineon_cmsis **Repository Path**: RT-Thread-Mirror/Infineon_cmsis ## Basic Information - **Project Name**: Infineon_cmsis - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-05-25 - **Last Updated**: 2025-08-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # CMSIS Repository ### Overview This repository is based on https://github.com/ARM-software/CMSIS_5/tree/5.8.0. CMSIS DSP is sourced from https://github.com/ARM-software/CMSIS-DSP This repository has CMSIS Core headers, CMSIS DSP and CMSIS NN source. It can be used by application or middleware to link CMSIS Core headers. It can also be used to build CMSIS DSP or NN based applications. ### Enabling CMSIS NN and DSP CMSIS NN and DSP source are not enabled by default. The applications which require CMSIS NN or CMSIS DSP need to update Makefile to add these in the components list: COMPONENTS += CMSIS_NN CMSIS_DSP For CM55 with Helium extension, below mentioned define also need to be set in application Makefile ifeq ($(MTB_RECIPE__CORE),CM55) DEFINES += ARM_MATH_AUTOVECTORIZE endif