Skip to content

Development-branch CMSIS-DSP Libraries for IAR Embedded Workbench for Arm V9.40.1+

License

Notifications You must be signed in to change notification settings

IARSystems/IAR-CMSIS-DSP

Repository files navigation

GitHub's CMSIS-DSP Libraries in
IAR Embedded Workbench for Arm

CMSIS, or Cortex Microcontroller Software Interface Standard, consists of a vendor-independent hardware abstraction layer for Arm Cortex processors which provides consistent device support. It provides simple software interfaces to the processor and the peripherals, simplifying software re-use, reducing the learning curve for developers, and reducing the time to market for new devices.

Designed on top of CMSIS, CMSIS-DSP is a comprehensive suite of compute kernels for applications requiring compute performance on mathematics (basic, fast, real, complex, quaternion, linear algebra), filtering (DSP), transforms (FFT, MFCC, DCT), statistics, classical ML, and related functionalities, built as a library for Arm Cortex-M devices.

In general, the CMSIS-DSP Library is supposed to be delivered as a CMSISPack provided by silicon vendors. However, the library can also be used by non-CMSISPack projects. This repository offers a process for building the CMSIS-DSP Library from its latest sources, in IAR Embedded Workbench for Arm version 9.40.1 or later, for non-CMSISPack enabled projects.

Tip

For non-CMSISPack projects, IAR Embedded Workbench for Arm already ships with pre-built CMSIS-DSP Libraries based on version 1.8.0. For simplicity, if you do not need the library's bleeding edge features, consider using a pre-built library instead.

How to build

The library is released in source form. It is strongly advised to build the library with optimizations for high speed to get the best performances.

Cloning

This repository comes with 2 submodules: CMSIS-DSP and also CMSIS_5. The reason is that the library needs the CMSIS_5/CMSIS/Core/Include/ headers to build.

Clone this repository alongside its submodules. For example, using the Command Prompt with Git for Windows:

set CLONE_DIR=%PROGRAMDATA%/IARSystems/github.com/IAR-CMSIS-DSP/
git clone --recurse-submodules https://github.com/IARSystems/IAR-CMSIS-DSP %CLONE_DIR%

Building

In IAR Embedded Workbench for Arm:

  1. Open the folder %PROGRAMDATA%/IARSystems/github.com/IAR-CMSIS-DSP/.
  2. Open the Library/arm_cortexM_math.eww workspace.
  3. Hit F8 and choose Build All .

In our example, static libraries for the supported core variants should now be available at your local repository (%PROGRAMDATA%/IARSystems/github.com/IAR-CMSIS-DSP/Lib/*.a).

Note

Unless updated, these libraries only need to be built once and can be used by any project that links against them.

Examples

The CMSIS-DSP Library ships with a number of examples which demonstrate how to use the library functions. Please refer to Examples for an IAR Embedded Workbench Workspace (CMSIS-DSP_Examples.eww) with example projects. The examples documentation can be found here.

Note

These projects are configured for a generic Cortex-M4 with single-precision FPU. They are ready to run in the Simulator.

Using the Library

The library functions are declared in the public file /path/to/CMSIS-DSP/Include/arm_math.h. Simply include this header file to your application.

Windows Environment Variable

One possibility for referencing CMSIS-DSP/Include is to set /path/to/IAR-CMSIS-DSP as a user environment variable.

  1. In the Windows' Start menu, search and execute "Edit Environment Variables for your Account"
  2. Add the following to the User variables:
Variable Value
IAR_CMSIS_DSP %PROGRAMDATA%/IARSystems/github.com/IAR-CMSIS-DSP/

That way, you can use the environment variable %IAR_CMSIS_DSP% from anywhere in the Windows OS to refer to where the libraries are to be found.

Project → Options (Alt + F7)

In your application project, consider the following options.

General Options → Library Configuration

Make sure your project is not using the IDE-provided CMSIS-DSP library:

CMSIS (legacy)

  • Use CMSIS 5.7
    • DSP library

Warning

The library's API in the latest version has changed since CMSIS-DSP V1.8.0. Refer to the online documentation for details.

General Options → Target

In your application project, verify which target is selected.

Note

By default, new projects in IAR Embedded Workbench for Arm will assume Core:Cortex-M3.

C/C++ Compiler → Preprocessor

Add these folders containing the library headers to your project's preprocessor options:

$_IAR_CMSIS_DSP_$/CMSIS_5/Core/Include
$_IAR_CMSIS_DSP_$/CMSIS-DSP/Include

Note

IAR Embedded Workbench can refer to an environment variable (e.g., %ENV_VAR%) when expressed between $_ and _$ (e.g., $_ENV_VAR_$).

Linker → Libraries

For linking a library against an application, it is important to match the same target configuration (CPU, FPU, Endianess, ...) in both projects.

In the application project's linker/library option, add the appropriate CMSIS-DSP library for the selected target.

To select the appropriate library, follow the naming convention:

$_IAR_CMSIS_DSP_$/Lib/iar_<library-selection>_math.a
  • Mapping for <library-section>:
Arm Core ARM architecture Endian soft float SP float DP float HP float
Cortex-M0 ARMv6-M little cortexM0l
Cortex-M0 ARMv6-M big cortexM0b
Cortex-M3 ARMv7-M little cortexM3l
Cortex-M3 ARMv7-M big cortexM3b
Cortex-M4 ARMv7E-M little cortexM4l cortexM4lf
Cortex-M4 ARMv7E-M big cortexM4b cortexM4bf
Cortex-M7 ARMv7E-M little cortexM7l cortexM7ls cortexM7lf
Cortex-M7 ARMv7E-M big cortexM7b cortexM7bs cortexM7bf
Cortex-M23 ARMv8-M Baseline little ARMv8MBLl
Cortex-M33 ARMv8-M Mainline little ARMv8MMLl ARMv8MMLlfsp ARMv8MMLlfdp
Cortex-M35P ARMv8-M Mainline little ARMv8MMLl ARMv8MMLlfsp ARMv8MMLlfdp
Cortex-M55 ARMv8.1-M Mainline little ARMv81MMLld ARMv81MMLldfdp ARMv81MLldfdph
Cortex-M85 ARMv8.1-M Mainline little ARMv81MMLld ARMv81MMLldfdp ARMv81MLldfdph

Note

The Library/arm_cortexM_math.eww workspace can be inspected for further details on each target's configurations.

Updating the CMSIS submodules

For getting the newest versions of the CMSIS submodules in your repository, use:

git submodule foreach git pull

Support/Contact

Conclusion

IAR Embedded Workbench for Arm unleashes compute performance when paired with highly optimized CMSIS-DSP libraries on Cortex-M devices.

About

Development-branch CMSIS-DSP Libraries for IAR Embedded Workbench for Arm V9.40.1+

Resources

License

Stars

Watchers

Forks