From 7fa81d18de1e00d13eea8061d387980deef0ecce Mon Sep 17 00:00:00 2001 From: Ted Pudlik Date: Sat, 20 Jul 2024 00:40:09 +0000 Subject: [PATCH] pw_system: Make pw_system_console work for rp2040 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Test: bazelisk run //pw_system:rp2040_system_example_console detokenizes device logs correctly. Bug: 354203490 Change-Id: I2cb9582ebcec1ba354e903ebf41a863b6f7b536c Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/224714 Lint: Lint 🤖 Pigweed-Auto-Submit: Ted Pudlik Commit-Queue: Auto-Submit Reviewed-by: Dave Roth --- pw_system/BUILD.bazel | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pw_system/BUILD.bazel b/pw_system/BUILD.bazel index 84c2fd4d18..3b722ae525 100644 --- a/pw_system/BUILD.bazel +++ b/pw_system/BUILD.bazel @@ -535,11 +535,11 @@ device_simulator_console( script = "//pw_system/py:device_sim", ) -# Conect to a device running :system_example over serial with the +# Conect to a Pico running :system_example over serial with the # pw-system-console. device_console( - name = "system_example_console", + name = "rp2040_system_example_console", testonly = True, - binary = ":system_example", + binary = ":rp2040_system_example", script = "//pw_system/py:pw_system_console", )