From 6cadda8bbd896a1676b3816698434bd9cf461683 Mon Sep 17 00:00:00 2001 From: Britannio Jarrett <33752528+britannio@users.noreply.github.com> Date: Wed, 10 Apr 2024 21:45:46 +0100 Subject: [PATCH] Add Raspberry Pi Pico W support Signed-off-by: Britannio Jarrett <33752528+britannio@users.noreply.github.com> --- src/hal/CompatibilityTable/CompatibilityTable.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hal/CompatibilityTable/CompatibilityTable.cpp b/src/hal/CompatibilityTable/CompatibilityTable.cpp index 6d46c45b..4acb5e54 100644 --- a/src/hal/CompatibilityTable/CompatibilityTable.cpp +++ b/src/hal/CompatibilityTable/CompatibilityTable.cpp @@ -100,8 +100,8 @@ namespace hal #if defined(ARDUINO_NANO_RP2040_CONNECT) device.type.devboard = DEVBOARD_ARDUINO_NANO_RP2040_CONNECT; -// Raspberry Pi Pico -#elif defined(ARDUINO_RASPBERRY_PI_PICO) +// Raspberry Pi Pico (W) +#elif defined(ARDUINO_RASPBERRY_PI_PICO) || defined(ARDUINO_RASPBERRY_PI_PICO_W) device.type.devboard = DEVBOARD_RASPBERRYPI_PICO; #else // The architecture and chip is known, but the board is not.