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 Jul 13, 2024
1 parent 23f64ca commit 92892a2
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 @@ -31,7 +31,7 @@
--fuse hfuse --fuse lfuse --fuse efuse
```
(\* *only AVR targets*)
(\\* *only AVR targets*)
"""

import os
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 @@ -28,7 +28,7 @@
python3 -m modm_tools.bmp --reset
```
(\* *only ARM Cortex-M targets*)
(\\* *only ARM Cortex-M targets*)
"""

from . import utils, gdb
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 @@ -19,7 +19,7 @@
python3 -m modm_tools.bossac -p auto --offset=0x2000 -e path/to/project.bin
```
(\* *only SAM targets*)
(\\* *only SAM targets*)
"""

import os
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 @@ -27,7 +27,7 @@
# copies to `path/to/folder/fa8918e6971ed783b25bff0ad11a0541be47a933.elf`
```
(\* *only ARM Cortex-M targets*)
(\\* *only ARM Cortex-M targets*)
"""

from pathlib import Path
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 @@ -23,7 +23,7 @@
--range 0x20000000:0x20042000:NO_CONTENTS
```
(\* *only ARM Cortex-M targets*)
(\\* *only ARM Cortex-M targets*)
"""

import struct
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 @@ -27,7 +27,7 @@
python3 -m modm_tools.itm jlink -device STM32F469NI
```
(\* *only ARM Cortex-M targets*)
(\\* *only ARM Cortex-M targets*)
"""

from . import openocd, jlink
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 @@ -32,7 +32,7 @@
export MODM_JLINK_BINARY=/path/to/other/JLinkGDBServer
```
(\* *only ARM Cortex-M targets*)
(\\* *only ARM Cortex-M targets*)
"""

import os
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 @@ -33,7 +33,7 @@
export MODM_OPENOCD_BINARY=/path/to/other/openocd
```
(\* *only ARM Cortex-M targets*)
(\\* *only ARM Cortex-M targets*)
"""

import os
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 @@ -27,7 +27,7 @@
python3 -m modm_tools.rtt --channel 0 jlink -device STM32F469NI
```
(\* *only ARM Cortex-M targets*)
(\\* *only ARM Cortex-M targets*)
"""

from . import openocd, jlink
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 @@ -32,7 +32,7 @@
(.heap1)
```
(\* *only ARM Cortex-M targets*)
(\\* *only ARM Cortex-M targets*)
"""

import textwrap
Expand Down

0 comments on commit 92892a2

Please sign in to comment.