aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Goger <klaus.goger@theobroma-systems.com>2023-08-04 11:32:18 +0200
committerKlaus Goger <klaus.goger@theobroma-systems.com>2023-08-04 12:28:31 +0200
commitd3646dfa98e5da4f39494ae8df7f610116b3b650 (patch)
tree5e32c49dc8f9f3a14b26f70db372dae2bf002d48
parent90bc12ae347916b0314f42d5cf67c05317811bb9 (diff)
usb-control: use board instead of baseboard
As we are now also support a SBC (Jaguar) the use of the term baseboard is wrong. Instead be more generic with just board. Signed-off-by: Klaus Goger <klaus.goger@theobroma-systems.com>
-rw-r--r--usb-control/command_processor.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/usb-control/command_processor.py b/usb-control/command_processor.py
index 7d8e513..f03843b 100644
--- a/usb-control/command_processor.py
+++ b/usb-control/command_processor.py
@@ -12,7 +12,7 @@ def do_delay(dev):
time.sleep(0.3)
def do_list(devs):
- print("Found %d Baseboard%s:" % (len(devs), "s"[len(devs) == 1:]))
+ print("Found %d board%s:" % (len(devs), "s"[len(devs) == 1:]))
for idx, dev in enumerate(devs):
print("%d: %s %s" % (idx, dev.serial_number, dev.product))
@@ -24,7 +24,7 @@ class CommandProcessor:
'delay': (do_delay,
'delays execution for 300 ms'),
'list': (do_list,
- 'lists serial numbers of attached Haikou Baseboards'),
+ 'lists serial numbers of attached boards'),
}
self.command_dict.update(command_dict)