From 1f390b523bac3bb7c4825df1107ec1fa2e12ca60 Mon Sep 17 00:00:00 2001 From: askiiart Date: Sun, 23 Oct 2022 12:59:22 -0500 Subject: [PATCH] Rename to tx --- Python/{rx_speed.py => tx_speed.py} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename Python/{rx_speed.py => tx_speed.py} (98%) diff --git a/Python/rx_speed.py b/Python/tx_speed.py similarity index 98% rename from Python/rx_speed.py rename to Python/tx_speed.py index f846158..f414e61 100644 --- a/Python/rx_speed.py +++ b/Python/tx_speed.py @@ -10,7 +10,7 @@ try: # On Linux, it will be "/dev/ttyXXX#", like "/dev/ttyACM0" or "/dev/ttyUSB0". I think macOS is the same. # On Windows, it will be "COM#", like "COM3" # --- - port = '/dev/ttyACM0' + port = '/dev/ttyACM2' link = txfer.SerialTransfer(port, 115200, timeout=.1) link.open()