How to show custom USB device name on Windows device manger

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

How to show custom USB device name on Windows device manger

2,418 次查看
_Ferrari_
Contributor V

Dear all,

I developed an application based on LPC55 CPU that use USB connection to share data with Windows PC.

It works but I would like to show 'custom name' when I open Windows Device Manager tool on PC.

For example, if I connect Arduino to my PC the following messege is shown:

_Ferrari__0-1685609747486.png

I would like to show my custom message (for example Ferrari device)

I don't know if:

- I have to modify the firmware on LPC55 to show custom message

or

- if I have to create custom Window drive to fix the problem

thank you very much for your help and cooperation

regards

0 项奖励
回复
6 回复数

2,384 次查看
Pavel_Hernandez
NXP TechSupport
NXP TechSupport

Hello, could you tell me how this appears at this moment on your side? I tried different examples, but in the USB the name does not appear of the example.

Best regards,
Pavel

0 项奖励
回复

2,341 次查看
_Ferrari_
Contributor V

Dear Pavel

 

The followig image showa what I see on the PC monitor

_Ferrari__1-1686133723788.png

 

regards

 

 

0 项奖励
回复

2,315 次查看
Pavel_Hernandez
NXP TechSupport
NXP TechSupport

Hello, thanks for your information for that you will need to modify the descriptor in usb_device_descriptor 

/* Define string descriptor */
USB_DMA_INIT_DATA_ALIGN(USB_DATA_ALIGN_SIZE)
uint8_t g_UsbDeviceString0[] = {2U + 2U, USB_DESCRIPTOR_TYPE_STRING, 0x09, 0x04};

USB_DMA_INIT_DATA_ALIGN(USB_DATA_ALIGN_SIZE)
uint8_t g_UsbDeviceString1[] = {
    2U + 2U * 18U, USB_DESCRIPTOR_TYPE_STRING,
    'N',           0x00U,
    'X',           0x00U,
    'P',           0x00U,
    ' ',           0x00U,
    'S',           0x00U,
    'E',           0x00U,
    'M',           0x00U,
    'I',           0x00U,
    'C',           0x00U,
    'O',           0x00U,
    'N',           0x00U,
    'D',           0x00U,
    'U',           0x00U,
    'C',           0x00U,
    'T',           0x00U,
    'O',           0x00U,
    'R',           0x00U,
    'S',           0x00U,
};

Best regards,
Pavel

0 项奖励
回复

2,292 次查看
_Ferrari_
Contributor V

Dear Pavel_Hernandez,

I modified the software as you required but the problem still remains.

 

_Ferrari__1-1686207779495.png

regards

 

0 项奖励
回复

2,279 次查看
Pavel_Hernandez
NXP TechSupport
NXP TechSupport

Hello, sorry but this will be an issue configuration of Windows.

Pavel_Hernandez_0-1686249255882.png

Best regards,
Pavel

0 项奖励
回复

2,408 次查看
Pavel_Hernandez
NXP TechSupport
NXP TechSupport

Hello, my name is Pavel, and I will be supporting your case, let me get into your case and when I have more information, I will contact you.

Best regards,
Pavel

0 项奖励
回复