From 431da710194065495b5de3ec07a4de0dc9d50d9d Mon Sep 17 00:00:00 2001 From: Rune Haugaard Date: Fri, 12 Jul 2024 00:00:18 +0200 Subject: [PATCH 1/2] Add missing icon for MLS-4X stratagem Resolves: #53 Signed-off-by: Rune Haugaard --- src/res/icons/stratagems/Commando.svg | 7 +++++++ src/res/stratagems.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 src/res/icons/stratagems/Commando.svg diff --git a/src/res/icons/stratagems/Commando.svg b/src/res/icons/stratagems/Commando.svg new file mode 100644 index 0000000..604036b --- /dev/null +++ b/src/res/icons/stratagems/Commando.svg @@ -0,0 +1,7 @@ + + + + \ No newline at end of file diff --git a/src/res/stratagems.json b/src/res/stratagems.json index a258016..7c342ac 100644 --- a/src/res/stratagems.json +++ b/src/res/stratagems.json @@ -412,6 +412,6 @@ "name": "MLS-4X Commando", "category": "Support", "command": [2,1,0,2,3], - "icon_name": "" + "icon_name": "Commando.svg" } } \ No newline at end of file From db2c39dad1297820e25cff6ad3786b7e1c9bd7cc Mon Sep 17 00:00:00 2001 From: Rune Haugaard Date: Fri, 12 Jul 2024 00:09:10 +0200 Subject: [PATCH 2/2] Fix issue with wrong boot config for pico The boot config would also enable console, which results in an additional serial connection which cannot be used with hell snake Resolves: #51 Signed-off-by: Rune Haugaard --- pico_passthrough/boot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pico_passthrough/boot.py b/pico_passthrough/boot.py index 730d544..4f6916e 100644 --- a/pico_passthrough/boot.py +++ b/pico_passthrough/boot.py @@ -1,2 +1,2 @@ import usb_cdc -usb_cdc.enable(console=True, data=True) +usb_cdc.enable(console=False, data=True)