Skip to content

Commit 561d2a3

Browse files
RockyZeroFourmaximevince
authored andcommitted
Changed message text
- Suppress the mentioning of the word "HID" when a device is connected
1 parent 573e9db commit 561d2a3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/usb/usb_host.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ static void USBH_UserProcess (USBH_HandleTypeDef *phost, uint8_t id)
8686
// Compose vidpid string
8787
uint16_t vid = phost->device.DevDesc.idVendor;
8888
uint16_t pid = phost->device.DevDesc.idProduct;
89-
printf("USB HID device connected: 0x%04X:%04X\n", vid, pid);
89+
printf("USB device connected: 0x%04X:%04X\n", vid, pid);
9090
memset(vidpid_string, 0, sizeof(vidpid_string));
9191
snprintf(vidpid_string, sizeof(vidpid_string), "0x%04X:%04X", vid, pid);
9292
vidpid_string[sizeof(vidpid_string) - 1] = '\0';

0 commit comments

Comments
 (0)