Skip to content

Commit

Permalink
rp2040: Log on successful flash
Browse files Browse the repository at this point in the history
Fix: b/352052013
Change-Id: Id48d06ac031f9015330726ce3046e508737efb7e
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/220575
Reviewed-by: Kayce Basques <[email protected]>
Commit-Queue: Taylor Cramer <[email protected]>
Reviewed-by: Chad Norvell <[email protected]>
Lint: Lint 🤖 <[email protected]>
Pigweed-Auto-Submit: Taylor Cramer <[email protected]>
  • Loading branch information
cramertj authored and CQ Bot Account committed Jul 9, 2024
1 parent a4a547c commit 71fe6b5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions targets/rp2040/py/rp2040_utils/flasher.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@ def flash(board_info: PicoBoardInfo, baud_rate: int, binary: Path) -> bool:
board_info.serial_port,
)
return False
_LOG.info(
'Successfully flashed Pico on bus %s, port %s, serial port %s',
board_info.bus,
board_info.port,
board_info.serial_port,
)
return True


Expand Down

0 comments on commit 71fe6b5

Please sign in to comment.