Pack: Fixed condition CM4_FP for Cortex-M4 with FPU to match Dfpu=FPU|SP_FPU|DP_FPU.
- Previously only "FPU" was recognized, but the device ARMCM4_FP uses "SP_FPU".
diff --git a/ARM.CMSIS.pdsc b/ARM.CMSIS.pdsc
index 331c867..3f35c32 100644
--- a/ARM.CMSIS.pdsc
+++ b/ARM.CMSIS.pdsc
@@ -809,7 +809,9 @@
     </condition>
     <condition id="CM4_FP">
       <description>Cortex-M4 processor based device using Floating Point Unit</description>
-      <require Dcore="Cortex-M4" Dfpu="FPU"/>
+      <accept Dcore="Cortex-M4" Dfpu="FPU"/>
+      <accept Dcore="Cortex-M4" Dfpu="SP_FPU"/>
+      <accept Dcore="Cortex-M4" Dfpu="DP_FPU"/>
     </condition>
     <condition id="CM7">
       <description>Cortex-M7 processor based device</description>