How to show custom USB device name on Windows device manger

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

How to show custom USB device name on Windows device manger

2,419件の閲覧回数
_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,385件の閲覧回数
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,342件の閲覧回数
_Ferrari_
Contributor V

Dear Pavel

 

The followig image showa what I see on the PC monitor

_Ferrari__1-1686133723788.png

 

regards

 

 

0 件の賞賛
返信

2,316件の閲覧回数
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,293件の閲覧回数
_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,280件の閲覧回数
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,409件の閲覧回数
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 件の賞賛
返信