diff --git a/firmware/PIMORONI_YUKON/board.json b/firmware/PIMORONI_YUKON/board.json index e0b0c0c..fdbdeb9 100644 --- a/firmware/PIMORONI_YUKON/board.json +++ b/firmware/PIMORONI_YUKON/board.json @@ -8,7 +8,7 @@ "images": [ ], "mcu": "rp2040", - "product": "Pimoroni Yukon", + "product": "Pimoroni Yukon (no Wireless)", "thumbnail": "", "url": "https://shop.pimoroni.com/products/yukon", "vendor": "Pimoroni" diff --git a/firmware/PIMORONI_YUKON_W/board.json b/firmware/PIMORONI_YUKON_W/board.json index cbd5892..02feff1 100644 --- a/firmware/PIMORONI_YUKON_W/board.json +++ b/firmware/PIMORONI_YUKON_W/board.json @@ -8,7 +8,7 @@ "images": [ ], "mcu": "rp2040", - "product": "Pimoroni Yukon W", + "product": "Pimoroni Yukon (+ Wireless)", "thumbnail": "", "url": "https://shop.pimoroni.com/products/yukon", "vendor": "Pimoroni" diff --git a/firmware/PIMORONI_YUKON_W/mpconfigboard.h b/firmware/PIMORONI_YUKON_W/mpconfigboard.h index ddbee02..2c12e95 100644 --- a/firmware/PIMORONI_YUKON_W/mpconfigboard.h +++ b/firmware/PIMORONI_YUKON_W/mpconfigboard.h @@ -20,7 +20,7 @@ // Enable networking. #define MICROPY_PY_NETWORK 1 -#define MICROPY_PY_NETWORK_HOSTNAME_DEFAULT "YukonW" +#define MICROPY_PY_NETWORK_HOSTNAME_DEFAULT "Yukon" // CYW43 driver configuration. #define CYW43_USE_SPI (1) diff --git a/lib/pimoroni_yukon/__init__.py b/lib/pimoroni_yukon/__init__.py index 1e41bdb..17ce07a 100644 --- a/lib/pimoroni_yukon/__init__.py +++ b/lib/pimoroni_yukon/__init__.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2023 Christopher Parrott for Pimoroni Ltd +# SPDX-FileCopyrightText: 2025 Christopher Parrott for Pimoroni Ltd # # SPDX-License-Identifier: MIT @@ -15,7 +15,7 @@ from ucollections import OrderedDict, namedtuple -YUKON_VERSION = "1.0.2" +YUKON_VERSION = "1.0.3" Slot = namedtuple("Slot", ("ID", "FAST1",