mirror of https://github.com/ARMmbed/mbed-os.git
Update index to include vendor information
parent
8d7c15ee35
commit
859949fc74
|
|
@ -910,6 +910,34 @@
|
|||
"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": {
|
||||
"name": "Musca",
|
||||
"mounted_devices": [
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -48,8 +48,12 @@ class DeviceCMSIS():
|
|||
self.dfpu = target_info['processor']['Symmetric']['fpu']
|
||||
except KeyError:
|
||||
self.dfpu = target_info['processor']['Asymmetric']['fpu']
|
||||
self.debug, self.dvendor = self.vendor_debug(target_info['from_pack']['vendor'])
|
||||
self.dendian = target_info['processor'].get('endianness','Little-endian')
|
||||
self.debug, self.dvendor = self.vendor_debug(
|
||||
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.target_info = target_info
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue