From 64e1dc657e4e9368751de6ebbeb1dc443f528c15 Mon Sep 17 00:00:00 2001 From: ZodiusInfuser Date: Mon, 16 Dec 2024 17:11:38 +0000 Subject: [PATCH] Bump version and name updates --- firmware/PIMORONI_YUKON/board.json | 2 +- firmware/PIMORONI_YUKON/mpconfigboard.h | 2 +- firmware/PIMORONI_YUKON_W/board.json | 2 +- firmware/PIMORONI_YUKON_W/mpconfigboard.h | 4 ++-- lib/pimoroni_yukon/__init__.py | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) 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/mpconfigboard.h b/firmware/PIMORONI_YUKON/mpconfigboard.h index 68455d7..be2b070 100644 --- a/firmware/PIMORONI_YUKON/mpconfigboard.h +++ b/firmware/PIMORONI_YUKON/mpconfigboard.h @@ -1,5 +1,5 @@ // This is a hack! Need to replace with upstream board definition. -#define MICROPY_HW_BOARD_NAME "Pimoroni Yukon" +#define MICROPY_HW_BOARD_NAME "Pimoroni Yukon (no Wireless)" #define MICROPY_HW_FLASH_STORAGE_BYTES (14160 * 1024) #define MICROPY_HW_USB_VID (0x2E8A) 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..0c54f78 100644 --- a/firmware/PIMORONI_YUKON_W/mpconfigboard.h +++ b/firmware/PIMORONI_YUKON_W/mpconfigboard.h @@ -1,5 +1,5 @@ // This is a hack! Need to replace with upstream board definition. -#define MICROPY_HW_BOARD_NAME "Pimoroni Yukon W" +#define MICROPY_HW_BOARD_NAME "Pimoroni Yukon (+ Wireless)" #define MICROPY_HW_FLASH_STORAGE_BYTES (14160 * 1024) #define MICROPY_HW_USB_VID (0x2E8A) @@ -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",