<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>CMSIS / nRF5 SDK version matrix</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/128014/cmsis-nrf5-sdk-version-matrix</link><description>Dear Nordic experts, 
 I am looking for which CMSIS version are used in nRF5 SDK versions. For instance 17.1.0 uses CMSIS 5.6.0. But I cannot find which CMSIS version is used in nRF SDK 15.3.0. I have downloaded arm_cortexM4lf_math.lib binary from github</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 04 May 2026 13:01:29 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/128014/cmsis-nrf5-sdk-version-matrix" /><item><title>RE: CMSIS / nRF5 SDK version matrix</title><link>https://devzone.nordicsemi.com/thread/565831?ContentTypeID=1</link><pubDate>Mon, 04 May 2026 13:01:29 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e4a2a612-69a7-457a-acff-90cf582588a1</guid><dc:creator>Priyanka</dc:creator><description>&lt;p&gt;Hi Vincent,&lt;/p&gt;
&lt;p&gt;It&amp;#39;s using CMSIS version 4.30&lt;br /&gt;You can&amp;nbsp;find it here:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;nRF5_SDK_15.3.0_59ac345\components\toolchain\cmsis\include\core_cm4.h&lt;/p&gt;
&lt;p&gt;-Priyanka&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: CMSIS / nRF5 SDK version matrix</title><link>https://devzone.nordicsemi.com/thread/565828?ContentTypeID=1</link><pubDate>Mon, 04 May 2026 12:36:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4623478d-2593-455b-94a3-074d74b82b36</guid><dc:creator>Priyanka</dc:creator><description>&lt;p&gt;Hi Vincent,&lt;/p&gt;
&lt;p&gt;I am checking this internally and will get back to you.&lt;/p&gt;
&lt;p&gt;-Priyanka&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: CMSIS / nRF5 SDK version matrix</title><link>https://devzone.nordicsemi.com/thread/565826?ContentTypeID=1</link><pubDate>Mon, 04 May 2026 12:28:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ccbb3b7c-2ee0-4816-a107-76252f7f683d</guid><dc:creator>Vincent Bela&amp;#239;che</dc:creator><description>&lt;p&gt;For information, I ran this script below to seek nRF5 SDK 15.3.0 CMSIS version&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;#! /usr/bin/env bash

# Replace /path/to/nRF5-SDK15.3.0 below by the suitable path

set -e

temp_dir=$(mktemp /tmp/find-cmsis-ver.XXXXXXX)
function on_exit
{
    rm -fr $temp_dir
}

cd &amp;quot;$tem_dir&amp;quot;
found=false;

for tag in 5.5.1 5.5.0 5.4.0 5.3.0 5.2.0 5.1.1 5.1.0 5.0.1 5.0.0 5.2.1-dev3; do
    rm -f arm_cortexM4lf_math.lib
    case $tag in
	5.5.1 | 5.5.0)
	    wget https://media.githubusercontent.com/media/ARM-software/CMSIS_5/refs/tags/$tag/CMSIS/DSP/Lib/ARM/arm_cortexM4lf_math.lib;
	    ;;
	*)
	    wget https://github.com/ARM-software/CMSIS_5/raw/refs/tags/$tag/CMSIS/Lib/ARM/arm_cortexM4lf_math.lib;
	    ;;
    esac
    if diff -s arm_cortexM4lf_math.lib  /path/to/nRF5-SDK15.3.0/components/toolchain/cmsis/dsp/ARM/arm_cortexM4lf_math.lib; then
	found=true;
	break;
    fi
done
if $found; then :; else
    echo &amp;quot;########## NOT FOUND ##########&amp;quot; &amp;gt;&amp;amp;2
fi
&lt;/pre&gt;&lt;/p&gt;
&lt;div&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>