Skip to content

Commit 3777802

Browse files
committed
Rerun script with proper truncation
1 parent d1316ae commit 3777802

File tree

5 files changed

+2
-7
lines changed

5 files changed

+2
-7
lines changed

check_tools/config-update.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ def main(file):
2727
lib = blocks[i].split('Name: ')[1].split('.')[0]
2828
print("================= %s =================" % lib)
2929
out = subprocess.check_output(["mbed", "compile", "--config", "-v", "--prefix", lib]).decode()
30-
print("File Replace Indices: %d : %d" % (start+4, end))
3130
file = file[:start+4] + out[:out.index("Macros") - 1] + file[end:]
3231

3332
except Exception as e:

docs/reference/configuration/Drivers.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,3 @@ Name: drivers.uart-serial-txbuf-size
1818
Macro name: MBED_CONF_DRIVERS_UART_SERIAL_TXBUF_SIZE
1919
Value: 256 (set by library:drivers)
2020
```
21-

docs/reference/configuration/Platform.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
d="configuration-platform">Platform</h2>
1+
<h2 id="configuration-platform">Platform</h2>
22

33
The platform configurations allow for customization of platform level OS options. These options include error handling properties and serial communication configuration settings for STDIO. They work out of platform because they affect system level `printf` calls, not Serial objects, with the exception of `default-serial-baud-rate`.
44

@@ -118,4 +118,3 @@ Name: platform.use-mpu
118118
Macro name: MBED_CONF_PLATFORM_USE_MPU
119119
Value: 1 (set by library:platform)
120120
```
121-

docs/reference/configuration/Storage.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,4 +518,3 @@ FileSystem *FileSystem::get_default_instance()
518518
}
519519
520520
```
521-
`

docs/reference/configuration/lorawanconfig.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<h2 idd="lorawan-configuration">LoRaWAN</h2>
1+
<h2 id="lorawan-configuration">LoRaWAN</h2>
22

33
Various parameters for Mbed LoRaWAN stack can be configured via either C++ APIs or by using the Mbed configuration system.
44

@@ -140,4 +140,3 @@ For changing any of these parameters, edit the `mbed_app.json` file in the root
140140
### Using APIs from LoRaWANInterface
141141

142142
See the [API reference](../apis/lorawan.html) for information about how to use these APIs from the LoRaWANInterface.
143-

0 commit comments

Comments
 (0)