Skip to content

Commit d09c2d8

Browse files
committed
Exporter - new progen targets addition, req progen v0.8.4
1 parent 74fa6ee commit d09c2d8

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
url='https://github.com/mbedmicro/mbed',
4141
packages=find_packages(),
4242
license=LICENSE,
43-
install_requires=["PrettyTable>=0.7.2", "PySerial>=2.7", "IntelHex>=1.3", "colorama>=0.3.3", "Jinja2>=2.7.3", "project-generator>=0.8.0,<0.9.0"])
43+
install_requires=["PrettyTable>=0.7.2", "PySerial>=2.7", "IntelHex>=1.3", "colorama>=0.3.3", "Jinja2>=2.7.3", "project-generator>=0.8.4,<0.9.0"])
4444

4545
# Restore previous private_settings if needed
4646
if backup:

workspace_tools/export/exporters.py

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class Exporter(object):
2424

2525
# mapping mbed to progen targets
2626
PROGEN_TARGETS = {
27-
'LPC1768': 'lpc1768',
27+
'LPC1768': 'mbed-lpc1768',
2828
'LPC11U24': 'lpc11u24_201',
2929
'LPC1347':'lpc1347',
3030
'LPC1114':'lpc1114_102',
@@ -41,14 +41,14 @@ class Exporter(object):
4141
'LPC11U35_401': 'lpc11u35_401',
4242
'LPC11U37H_401':'lpc11u37_401',
4343

44-
'KL05Z':'mkl05z32xxx4',
45-
'KL25Z':'mkl25z128xxx4',
46-
'KL43Z':'mkl43z256xxx4',
47-
'KL46Z':'mkl46z256xxx4',
48-
'K64F': 'mk64fn1m0xxx12',
49-
'K22F': 'mk22dn512xxx5',
44+
'KL05Z':'frdm-kl05z',
45+
'KL25Z':'frdm-kl25z',
46+
'KL43Z':'frdm-kl43z',
47+
'KL46Z':'frdm-kl46z',
48+
'K64F': 'frdm-k64f',
49+
'K22F': 'frdm-k22f',
5050
'K20D50M': 'frdm-k20d50m',
51-
'TEENSY3_1':'mk20dx256xxx7',
51+
'TEENSY3_1':'teensy-31',
5252

5353
'NUCLEO_F030R8':'nucleo-f030r8',
5454
'NUCLEO_F031K6':'nucleo-f031k6',
@@ -70,7 +70,7 @@ class Exporter(object):
7070
'NUCLEO_L152RE':'nucleo-l152re',
7171
'NUCLEO_L476RG':'nucleo-l476rg',
7272

73-
'DISCO_F407VG':'stm32f407vg',
73+
'DISCO_F407VG':'disco-f407vg',
7474
'DISCO_F429ZI':'disco-f429zi',
7575
'DISCO_L053C8':'disco-l053c8',
7676
'DISCO_F334C8':'disco-f334c8',
@@ -81,17 +81,17 @@ class Exporter(object):
8181
'UBLOX_C027':'ublox-c027',
8282
'NRF51822':'mkit',
8383
'HRM1017':'hrm1017',
84-
'RBLAB_NRF51822':'nrf51822',
84+
'RBLAB_NRF51822':'rblab-nrf51822',
8585
'ARCH_PRO':'arch-pro',
8686
'ARCH_BLE':'arch-ble',
8787
'MTS_GAMBIT':'mts-gambit',
8888
'ARCH_MAX':'lpc1768',
89-
'MTS_MDOT_F405RG':'stm32f405rg',
90-
'MTS_MDOT_F411RE': 'stm32f411re',
91-
'MTS_DRAGONFLY_F411RE': 'stm32f411re',
92-
'NRF51_DK':'nrf51822',
93-
'NRF51_DONGLE':'nrf51822',
94-
'SEEED_TINY_BLE':'nrf51822',
89+
'MTS_MDOT_F405RG':'mts-mdot-f405rg',
90+
'MTS_MDOT_F411RE': 'mts-mdot-f411re',
91+
'MTS_DRAGONFLY_F411RE': 'mts-dragonfly-f411re',
92+
'NRF51_DK':'nrf51-dk',
93+
'NRF51_DONGLE':'nrf51-dongle',
94+
'SEEED_TINY_BLE':'seed-tinyble',
9595

9696
'DELTA_DFCM_NNN40':'dfcm-nnn40',
9797
'MAXWSNENV':'maxwsnenv',

0 commit comments

Comments
 (0)