@@ -78,6 +78,8 @@ class mbedToolchain:
78
78
"Cortex-M33" : ["__CORTEX_M33" , "ARM_MATH_ARMV8MML" , "__CMSIS_RTOS" , "__MBED_CMSIS_RTOS_CM" ],
79
79
"Cortex-M33F-NS" : ["__CORTEX_M33" , "ARM_MATH_ARMV8MML" , "DOMAIN_NS=1" , "__FPU_PRESENT=1U" , "__CMSIS_RTOS" , "__MBED_CMSIS_RTOS_CM" ],
80
80
"Cortex-M33F" : ["__CORTEX_M33" , "ARM_MATH_ARMV8MML" , "__FPU_PRESENT=1U" , "__CMSIS_RTOS" , "__MBED_CMSIS_RTOS_CM" ],
81
+ "Cortex-M33FD-NS" : ["__CORTEX_M33" , "ARM_MATH_ARMV8MML" , "DOMAIN_NS=1" , "__FPU_PRESENT=1U" , "__CMSIS_RTOS" , "__MBED_CMSIS_RTOS_CM" ],
82
+ "Cortex-M33FD" : ["__CORTEX_M33" , "ARM_MATH_ARMV8MML" , "__FPU_PRESENT=1U" , "__CMSIS_RTOS" , "__MBED_CMSIS_RTOS_CM" ],
81
83
}
82
84
83
85
MBED_CONFIG_FILE_NAME = "mbed_config.h"
@@ -717,7 +719,7 @@ def _add_defines_from_region(self, region, linker_define=False, suffixes=['_ADDR
717
719
ld_string = self .make_ld_define (* ld_string )
718
720
self .ld .append (ld_string )
719
721
self .flags ["ld" ].append (ld_string )
720
-
722
+
721
723
def _add_all_regions (self , region_list , active_region_name ):
722
724
for region in region_list :
723
725
self ._add_defines_from_region (region )
@@ -744,8 +746,8 @@ def add_regions(self):
744
746
))
745
747
self ._add_all_regions (regions , "MBED_APP" )
746
748
except ConfigException :
747
- pass
748
-
749
+ pass
750
+
749
751
if self .config .has_ram_regions :
750
752
try :
751
753
regions = list (self .config .ram_regions )
@@ -755,7 +757,7 @@ def add_regions(self):
755
757
))
756
758
self ._add_all_regions (regions , "MBED_RAM" )
757
759
except ConfigException :
758
- pass
760
+ pass
759
761
760
762
Region = namedtuple ("Region" , "name start size" )
761
763
0 commit comments