Skip to content

Commit

Permalink
[tools] Fix python syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
rleh committed Aug 21, 2024
1 parent a3ac5db commit f58b42f
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion tools/modm_tools/avrdude.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# -----------------------------------------------------------------------------

"""
r"""
### AvrDude
This tool simply wraps the `avrdude` command to provide two features:
Expand Down
2 changes: 1 addition & 1 deletion tools/modm_tools/bmp.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# -----------------------------------------------------------------------------

"""
r"""
### Black Magic Probe
This tool wraps GDB to program an ELF file onto a target connected to a BMP.
Expand Down
2 changes: 1 addition & 1 deletion tools/modm_tools/bossac.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# -----------------------------------------------------------------------------

"""
r"""
### BOSSA
This tool simply wraps the `bossac` command line tool to guess the serial port.
Expand Down
2 changes: 1 addition & 1 deletion tools/modm_tools/build_id.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# -----------------------------------------------------------------------------

"""
r"""
### GNU Build-ID
To extract the build ID from an ELF file:
Expand Down
2 changes: 1 addition & 1 deletion tools/modm_tools/elf2uf2.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# -----------------------------------------------------------------------------

"""
r"""
### UF2 Converter
UF2 is a [Microsoft file format](https://github.com/microsoft/uf2) to pass
Expand Down
2 changes: 1 addition & 1 deletion tools/modm_tools/itm.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# -----------------------------------------------------------------------------

"""
r"""
### Logging via Single-Wire Output (SWO)
Logging using the SWO protocol is supported by the `modm:platform:itm` module.
Expand Down
2 changes: 1 addition & 1 deletion tools/modm_tools/jlink.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# -----------------------------------------------------------------------------

"""
r"""
### JLink
Simply wraps JLinkGDBServer and issues the right command to program the target.
Expand Down
2 changes: 1 addition & 1 deletion tools/modm_tools/openocd.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# -----------------------------------------------------------------------------

"""
r"""
### OpenOCD
Simply wraps OpenOCD and issues the right command to program the target.
Expand Down
2 changes: 1 addition & 1 deletion tools/modm_tools/rtt.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# -----------------------------------------------------------------------------

"""
r"""
### Logging via Real-Time Transport (RTT)
Logging using the RTT protocol is supported by the `modm:platform:rtt` module.
Expand Down
2 changes: 1 addition & 1 deletion tools/modm_tools/size.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

"""
r"""
### Size Report
Inspects the ELF file and generates a size report of the static usage of the
Expand Down

0 comments on commit f58b42f

Please sign in to comment.