Update index to include vendor information

pull/8757/head
Jimmy Brisson 2018-12-07 15:14:00 -06:00
parent 8d7c15ee35
commit 859949fc74
3 changed files with 17935 additions and 6905 deletions

View File

@ -910,6 +910,34 @@
"MM32W373PSB" "MM32W373PSB"
] ]
}, },
"MSP-EXP432E401Y": {
"name": "MSP-EXP432E401Y",
"mounted_devices": [
"MSP432E401Y"
]
},
"MSP-EXP432P401R": {
"name": "MSP-EXP432P401R",
"mounted_devices": [
"MSP432P401R"
]
},
"MSP-EXP432P4111": {
"name": "MSP-EXP432P4111",
"mounted_devices": [
"MSP432P4111"
]
},
"MSP-TS432PZ100": {
"name": "MSP-TS432PZ100",
"mounted_devices": [
"MSP432P401R",
"MSP432P401M",
"MSP432P4111",
"MSP432P411Y",
"MSP432P411V"
]
},
"Musca": { "Musca": {
"name": "Musca", "name": "Musca",
"mounted_devices": [ "mounted_devices": [

File diff suppressed because it is too large Load Diff

View File

@ -48,8 +48,12 @@ class DeviceCMSIS():
self.dfpu = target_info['processor']['Symmetric']['fpu'] self.dfpu = target_info['processor']['Symmetric']['fpu']
except KeyError: except KeyError:
self.dfpu = target_info['processor']['Asymmetric']['fpu'] self.dfpu = target_info['processor']['Asymmetric']['fpu']
self.debug, self.dvendor = self.vendor_debug(target_info['from_pack']['vendor']) self.debug, self.dvendor = self.vendor_debug(
self.dendian = target_info['processor'].get('endianness','Little-endian') target_info.get('vendor') or target_info['from_pack']['vendor']
)
self.dendian = target_info['processor'].get(
'endianness', 'Little-endian'
)
self.debug_svd = target_info.get('debug', '') self.debug_svd = target_info.get('debug', '')
self.target_info = target_info self.target_info = target_info