update USB VID/PID and vendor/product strings per @TomWhitwell

This commit is contained in:
Tod Kurt 2024-12-01 12:05:43 -08:00
parent 7d1abc9fdd
commit 34dbde184d
3 changed files with 4 additions and 4 deletions

View file

@ -6,7 +6,7 @@
#pragma once
#define MICROPY_HW_BOARD_NAME "Music Thing Modular Computer"
#define MICROPY_HW_BOARD_NAME "Music Thing Modular Workshop Computer"
#define MICROPY_HW_MCU_NAME "rp2040"

View file

@ -1,6 +1,6 @@
USB_VID = 0x239A
USB_PID = 0x80F4
USB_PRODUCT = "MTM Computer"
USB_PID = 0x10C1
USB_PRODUCT = "Workshop Computer"
USB_MANUFACTURER = "Music Thing Modular"
CHIP_VARIANT = RP2040

View file

@ -1,6 +1,6 @@
// This file is part of the CircuitPython project: https://circuitpython.org
//
// SPDX-FileCopyrightText: Copyright (c) 2021 Scott Shawcroft for Adafruit Industries
// SPDX-FileCopyrightText: Copyright (c) 2024 Tod Kurt
//
// SPDX-License-Identifier: MIT