Skip to content

Commit e00110e

Browse files
committed
"RP2350" USB manufacturer string
1 parent 6501425 commit e00110e

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

firmware/src/tinyusb_stuff.cc

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,12 @@ const uint8_t* configuration_descriptors[] = {
104104

105105
char const* string_desc_arr[] = {
106106
(const char[]){ 0x09, 0x04 }, // 0: is supported language is English (0x0409)
107-
"RP2040", // 1: Manufacturer
108-
"HID Remapper XXXX", // 2: Product
107+
#ifdef PICO_RP2350
108+
"RP2350", // 1: Manufacturer
109+
#else
110+
"RP2040", // 1: Manufacturer
111+
#endif
112+
"HID Remapper XXXX", // 2: Product
109113
};
110114

111115
// Invoked when received GET DEVICE DESCRIPTOR

0 commit comments

Comments
 (0)