Skip to content

Commit 5379569

Browse files
committed
fix serial_session.py
1 parent e638fd7 commit 5379569

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

extras/tests/esp32_hw_based/serial_session.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def wait_for_boot(self):
168168
1. **Hardware reset on open** -- the ESP32 reboots automatically
169169
when the serial port is opened. We wait for the pin
170170
configuration prompt, send the config number, and wait for
171-
``LOG start`` to confirm full boot.
171+
``StepperDemo`` to confirm full boot.
172172
2. **No hardware reset** -- the ESP32 is already running.
173173
We fall back to a software reset via the ``reset`` command
174174
and then proceed as in case 1.
@@ -183,7 +183,7 @@ def wait_for_boot(self):
183183
time.sleep(0.05)
184184
self.send(self.config)
185185

186-
self.wait_for("LOG start")
186+
self.wait_for("StepperDemo")
187187
time.sleep(0.1)
188188

189189
def send(self, command):

0 commit comments

Comments
 (0)