mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #3349 from sarahmarshy/patch-7
[Exporters] Fix generic ARM CPU target in uvisionpull/3362/head
commit
8fd363d19a
|
|
@ -58,7 +58,7 @@ class DeviceCMSIS():
|
||||||
try:
|
try:
|
||||||
# Try to find the core as a generic CMSIS target
|
# Try to find the core as a generic CMSIS target
|
||||||
cpu_name = DeviceCMSIS.cpu_cmsis(t.core)
|
cpu_name = DeviceCMSIS.cpu_cmsis(t.core)
|
||||||
target_info = DeviceCMSIS.index[cpu_name]
|
target_info = DeviceCMSIS.CACHE.index[cpu_name]
|
||||||
except:
|
except:
|
||||||
return False
|
return False
|
||||||
target_info["_cpu_name"] = cpu_name
|
target_info["_cpu_name"] = cpu_name
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue