Skip to content

Commit e8b3428

Browse files
committed
Minor formatting changes
1 parent 51b13c3 commit e8b3428

File tree

3 files changed

+7
-23
lines changed

3 files changed

+7
-23
lines changed

targets/targets.json

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1719,14 +1719,6 @@
17191719
"device_has": ["ANALOGIN", "ERROR_PATTERN", "I2C", "INTERRUPTIN", "LOWPOWERTIMER", "PORTIN", "PORTINOUT", "PORTOUT", "PWMOUT", "RTC", "SERIAL", "SERIAL_FC", "SLEEP", "SPI", "SPI_ASYNCH", "STDIO_MESSAGES"],
17201720
"release_versions": ["2", "5"]
17211721
},
1722-
"MAX32620HSP": {
1723-
"inherits": ["Target"],
1724-
"core": "Cortex-M4F",
1725-
"extra_labels": ["Maxim", "MAX32620"],
1726-
"supported_toolchains": ["GCC_ARM", "IAR", "ARM"],
1727-
"device_has": ["ANALOGIN", "ERROR_PATTERN", "I2C", "INTERRUPTIN", "LOWPOWERTIMER", "PORTIN", "PORTINOUT", "PORTOUT", "PWMOUT", "RTC", "SERIAL", "SERIAL_FC", "SLEEP", "SPI", "SPI_ASYNCH", "STDIO_MESSAGES"],
1728-
"release_versions": ["2", "5"]
1729-
},
17301722
"EFM32GG_STK3700": {
17311723
"inherits": ["Target"],
17321724
"core": "Cortex-M3",
@@ -1903,7 +1895,9 @@
19031895
"program_cycle_s": 6,
19041896
"features": ["BLE"],
19051897
"config": {
1906-
"lf_clock_src": {"value": "NRF_LF_SRC_XTAL", "macro_name": "MBED_CONF_NORDIC_NRF_LF_CLOCK_SRC"},
1898+
"lf_clock_src": {
1899+
"value": "NRF_LF_SRC_XTAL",
1900+
"macro_name": "MBED_CONF_NORDIC_NRF_LF_CLOCK_SRC"},
19071901
"uart_hwfc": {
19081902
"help": "Value: 1 for enable, 0 for disable",
19091903
"value": 1,
@@ -1957,7 +1951,9 @@
19571951
"MERGE_BOOTLOADER": false,
19581952
"features": ["BLE"],
19591953
"config": {
1960-
"lf_clock_src": {"value": "NRF_LF_SRC_XTAL", "macro_name": "MBED_CONF_NORDIC_NRF_LF_CLOCK_SRC"},
1954+
"lf_clock_src": {
1955+
"value": "NRF_LF_SRC_XTAL",
1956+
"macro_name": "MBED_CONF_NORDIC_NRF_LF_CLOCK_SRC"},
19611957
"uart_hwfc": {
19621958
"help": "Value: 1 for enable, 0 for disable",
19631959
"value": 1,

tools/export/iar/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ def generate(self):
101101
flags['c_flags'].remove('--vla')
102102
if '--no_static_destruction' in flags['c_flags']:
103103
flags['c_flags'].remove('--no_static_destruction')
104+
#Optimizations
104105
if '-Oh' in flags['c_flags']:
105106
flags['c_flags'].remove('-Oh')
106107
ctx = {

tools/project_api.py

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -177,19 +177,6 @@ def export_project(src_paths, export_path, target, ide,
177177
paths = [src_paths]
178178

179179
# Extend src_paths wit libraries_paths
180-
181-
182-
183-
184-
185-
186-
187-
188-
189-
190-
191-
192-
193180
if libraries_paths is not None:
194181
paths.extend(libraries_paths)
195182

0 commit comments

Comments
 (0)