From 4f3d2b7b6c78956cd1a5db119a2b9a0bdf1d46ec Mon Sep 17 00:00:00 2001 From: KayKun Date: Sat, 6 Mar 2021 11:33:16 +0100 Subject: [PATCH] Update arduino_hid.md (#224) Found out that in the newer images in the cmdline.txt the entries have change. console=ttyAMA0,115200 is now console=serial0,115200 and kgdboc=ttyAMA0,115200 is now kgdboc=serial0,115200 --- pages/arduino_hid.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/arduino_hid.md b/pages/arduino_hid.md index 3d584d0..d1a4700 100644 --- a/pages/arduino_hid.md +++ b/pages/arduino_hid.md @@ -17,7 +17,7 @@ Using Arduino HID on non-v0 platforms is useful if you need a simple and primiti KERNEL=="ttyAMA0", SYMLINK+="kvmd-hid" ``` * Run `systemctl disable getty@ttyAMA0.service`. -* Remove `console=ttyAMA0,115200` and `kgdboc=ttyAMA0,115200` from `/boot/cmdline.txt`. +* Remove `console=ttyAMA0,115200`or `console=serial0,115200` and `kgdboc=ttyAMA0,115200` or `kgdboc=serial0,115200` from `/boot/cmdline.txt`. * [Flash the Arduino HID](flashing_hid.md). * Run `reboot`.