Skip to content

Commit 4ec8452

Browse files
committed
fix obs environment, add info about reset
1 parent aa0ee28 commit 4ec8452

File tree

1 file changed

+20
-2
lines changed

1 file changed

+20
-2
lines changed

content/docs/firmware/flash-python.md

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,31 @@ Nun kannst du den ESP (nicht den OpenBikeSensor) per USB-Kabel mit deinem Rechne
2525
Ggf. ist es dafür nötig den **boot**-Knopf am ESP zu drücken.
2626

2727
```
28-
venv/bin/platformio run -t upload
28+
venv/bin/platformio run -t upload -e obs
2929
```
3030

3131
oder unter Windows
3232

3333
```
34-
venv\scripts\platformio run -t upload
34+
venv\scripts\platformio run -t upload -e obs
35+
```
36+
37+
## Komplettreset
38+
39+
Gibt es ein Problem mit der Firmware, das durch ein neu flashen nicht behoben werden kann, hilft es manchmal, den
40+
esp samt datenpartitionen zu resetten:
41+
42+
```
43+
venv/bin/platformio run -t erase -e obs
44+
venv/bin/platformio run -t upload -e obs
45+
46+
```
47+
48+
oder unter Windows
49+
50+
```
51+
venv\scripts\platformio run -t erase -e obs
52+
venv\scripts\platformio run -t upload -e obs
3553
```
3654

3755
## Nach dem Flashen

0 commit comments

Comments
 (0)