|
@@ -46,3 +46,26 @@ objs = PrepareBuilding(env, RTT_ROOT, has_libcpu=False)
|
|
|
|
|
|
# make a building
|
|
|
DoBuilding(TARGET, objs)
|
|
|
+
|
|
|
+def Update_MDKFlashProgrammingAlgorithm(flash_dict):
|
|
|
+ import xml.etree.ElementTree as etree
|
|
|
+ from utils import xml_indent
|
|
|
+
|
|
|
+ project_tree = etree.parse('project.uvoptx')
|
|
|
+ root = project_tree.getroot()
|
|
|
+ out = file('project.uvoptx', 'wb')
|
|
|
+
|
|
|
+ for elem in project_tree.iterfind('.//Target/TargetOption/TargetDriverDllRegistry/SetRegEntry'):
|
|
|
+ Key = elem.find('Key')
|
|
|
+ if Key.text in flash_dict.keys():
|
|
|
+ elem.find('Name').text = flash_dict[Key.text]
|
|
|
+
|
|
|
+ xml_indent(root)
|
|
|
+ out.write(etree.tostring(root, encoding='utf-8'))
|
|
|
+ out.close()
|
|
|
+
|
|
|
+if GetOption('target') and GetDepend('BOARD_RT1050_FIRE'):
|
|
|
+ Update_MDKFlashProgrammingAlgorithm({
|
|
|
+ "JL2CM3": '-U30000299 -O78 -S2 -ZTIFSpeedSel5000 -A0 -C0 -JU1 -JI-JP0 -JP0 -RST1 -N00("ARM CoreSight SW-DP") -D00(0BD11477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8001 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -TB1 -TFE0 -FO15 -FD20000000 -FCF000 -FN1 -FF0iMXRT1052_W25Q256JV_By_Fire -FS060000000 -FL02000000',
|
|
|
+ "CMSIS_AGDI": '-X"Any" -UAny -O974 -S9 -C0 -P00 -N00("ARM CoreSight SW-DP") -D00(0BD11477) -L00(0) -TO18 -TC10000000 -TP20 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FCF000 -FN1 -FF0iMXRT1052_W25Q256JV_By_Fire -FS060000000 -FL02000000',
|
|
|
+ })
|