Skip to content

Commit

Permalink
Update usb_descriptors.c to match vendor name.
Browse files Browse the repository at this point in the history
  • Loading branch information
DatanoiseTV committed Oct 7, 2023
1 parent 18f4e32 commit a85c3ec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/usb_descriptors.c
Original file line number Diff line number Diff line change
Expand Up @@ -131,10 +131,10 @@ uint8_t const * tud_descriptor_configuration_cb(uint8_t index)
// array of pointer to string descriptors
char const* string_desc_arr [] =
{
(const char[]) { 0x09, 0x04 }, // 0: is supported language is English (0x0409)
"DatanoiseTV", // 1: Manufacturer
"PicoADK", // 2: Product
usb_serial, // 3: Serials, should use chip ID
(const char[]) { 0x09, 0x04 }, // 0: supported language is English (0x0409)
"Datanoise", // 1: Manufacturer
"PicoADK", // 2: Product
usb_serial, // 3: Serials, should use chip ID
};

static uint16_t _desc_str[32];
Expand Down

0 comments on commit a85c3ec

Please sign in to comment.