Skip to content

Commit e767fbc

Browse files
author
Evgueni Driouk
committed
Version 2.7.0
1 parent 947ea17 commit e767fbc

File tree

67 files changed

+252
-344
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+252
-344
lines changed

com.arm.cmsis.config.tests/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
33
Bundle-Name: Tests
44
Bundle-SymbolicName: com.arm.cmsis.config.tests
55
Automatic-Module-Name: com.arm.cmsis.config.tests
6-
Bundle-Version: 2.6.1.qualifier
6+
Bundle-Version: 2.7.0.qualifier
77
Bundle-Vendor: Arm Limited
88
Fragment-Host: com.arm.cmsis.config
99
Bundle-RequiredExecutionEnvironment: JavaSE-11

com.arm.cmsis.config.tests/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>com.arm.cmsis</groupId>
1010
<artifactId>com.arm.cmsis.parent</artifactId>
11-
<version>2.6.1-SNAPSHOT</version>
11+
<version>2.7.0-SNAPSHOT</version>
1212
<relativePath>../com.arm.cmsis.parent</relativePath>
1313
</parent>
1414
<properties>
@@ -34,7 +34,7 @@
3434
<artifact>
3535
<groupId>com.arm.cmsis</groupId>
3636
<artifactId>com.arm.cmsis.tests.target</artifactId>
37-
<version>2.6.1-SNAPSHOT</version>
37+
<version>2.7.0-SNAPSHOT</version>
3838
</artifact>
3939
</target>
4040
<environments>

com.arm.cmsis.config/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
33
Bundle-Name: CMSIS Config
44
Bundle-SymbolicName: com.arm.cmsis.config;singleton:=true
55
Automatic-Module-Name: com.arm.cmsis.config
6-
Bundle-Version: 2.6.1.qualifier
6+
Bundle-Version: 2.7.0.qualifier
77
Bundle-Activator: com.arm.cmsis.config.ConfigPlugIn
88
Bundle-Vendor: Arm Limited
99
Require-Bundle: org.eclipse.ui,

com.arm.cmsis.config/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.arm.cmsis</groupId>
99
<artifactId>com.arm.cmsis.parent.sign</artifactId>
10-
<version>2.6.1-SNAPSHOT</version>
10+
<version>2.7.0-SNAPSHOT</version>
1111
<relativePath>../com.arm.cmsis.parent.sign</relativePath>
1212
</parent>
1313
</project>

com.arm.cmsis.help/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
33
Bundle-Name: Help
44
Bundle-SymbolicName: com.arm.cmsis.help;singleton:=true
55
Automatic-Module-Name: com.arm.cmsis.help
6-
Bundle-Version: 2.6.1.qualifier
6+
Bundle-Version: 2.7.0.qualifier
77
Bundle-Activator: com.arm.cmsis.help.HelpPlugIn
88
Bundle-Vendor: Arm Limited
99
Require-Bundle: org.eclipse.ui,

com.arm.cmsis.help/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.arm.cmsis</groupId>
77
<artifactId>com.arm.cmsis.parent.sign</artifactId>
8-
<version>2.6.1-SNAPSHOT</version>
8+
<version>2.7.0-SNAPSHOT</version>
99
<relativePath>../com.arm.cmsis.parent.sign</relativePath>
1010
</parent>
1111
</project>

com.arm.cmsis.pack.build.armcc/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
33
Bundle-Name: Armcc Toolchain Adapter
44
Bundle-SymbolicName: com.arm.cmsis.pack.build.armcc;singleton:=true
55
Automatic-Module-Name: com.arm.cmsis.pack.build.armcc
6-
Bundle-Version: 2.6.1.qualifier
6+
Bundle-Version: 2.7.0.qualifier
77
Bundle-Activator: com.arm.cmsis.pack.build.armcc.Activator
88
Bundle-Vendor: Arm Limited
99
Require-Bundle: org.eclipse.core.runtime,

com.arm.cmsis.pack.build.armcc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.arm.cmsis</groupId>
77
<artifactId>com.arm.cmsis.parent.sign</artifactId>
8-
<version>2.6.1-SNAPSHOT</version>
8+
<version>2.7.0-SNAPSHOT</version>
99
<relativePath>../com.arm.cmsis.parent.sign</relativePath>
1010
</parent>
1111
</project>

com.arm.cmsis.pack.build.armcc/src/com/arm/cmsis/pack/build/armcc/ArmccToolChainAdapter.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2021 ARM Ltd. and others
2+
* Copyright (c) 2022 ARM Ltd. and others
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License v1.0
55
* which accompanies this distribution, and is available at
@@ -742,6 +742,7 @@ protected String getCpuPrefix(String cpu, String mve) {
742742
bMve = true;
743743
break;
744744
case "Cortex-M55": //$NON-NLS-1$
745+
case "Cortex-M85": //$NON-NLS-1$
745746
bMve = true;
746747
break;
747748
default:
@@ -768,7 +769,7 @@ protected String getCpuPrefix(String cpu, String mve) {
768769
*
769770
* @param cpu device info's Dcore attribute
770771
* @param fpu device info's Dfpu attribute
771-
* @param mve device info's Ddsp attribute
772+
* @param dsp device info's Ddsp attribute
772773
* @param mve device info's Dmve attribute
773774
* @return resulting FPU string
774775
*/
@@ -777,7 +778,7 @@ public String getFpuSuffix(String cpu, String fpu, String dsp, String mve) {
777778
if (CmsisConstants.FP_MVE.equals(mve)) {
778779
return "FP16.FP32"; //$NON-NLS-1$
779780
}
780-
if ("Cortex-M33".equals(cpu)) { //$NON-NLS-1$
781+
if ("Cortex-M33".equals(cpu) || "Star-MC1".equals(cpu)) { //$NON-NLS-1$
781782
if (!CmsisConstants.DSP.equals(dsp)) {
782783
return NoDSP_NoFPU;
783784
}
@@ -835,12 +836,13 @@ public String getFpuSuffix(String cpu, String fpu, String dsp, String mve) {
835836
case "ARMV81MML": //$NON-NLS-1$
836837
return dp ? "FP16.FP32.FP64" : "FP16.FP32"; //$NON-NLS-1$ //$NON-NLS-2$
837838
case "Cortex-M55": //$NON-NLS-1$
839+
case "Cortex-M85": //$NON-NLS-1$
838840
return "FP16.FP32.FP64"; // $NON-NLS-2$
839841

840842
case "Cortex-M35P": //$NON-NLS-1$
841843
case "Cortex-M33": //$NON-NLS-1$
844+
case "Star-MC1": //$NON-NLS-1$
842845
return "FPv5_SP_D16"; //$NON-NLS-1$
843-
844846
}
845847
return NoFPU;
846848
}

com.arm.cmsis.pack.build.armgcc/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
33
Bundle-Name: Arm GCC Toolchain Adapter
44
Bundle-SymbolicName: com.arm.cmsis.pack.build.armgcc;singleton:=true
55
Automatic-Module-Name: com.arm.cmsis.pack.build.armgcc
6-
Bundle-Version: 2.6.1.qualifier
6+
Bundle-Version: 2.7.0.qualifier
77
Bundle-Activator: com.arm.cmsis.pack.build.armgcc.Activator
88
Bundle-Vendor: Arm Limited
99
Require-Bundle: org.eclipse.core.runtime,

0 commit comments

Comments
 (0)