Hi.
I am working on the MSC, and starting with the usbd_msc demo. The windows explorer will show a disk named "USB Drive" if connect to the PC.
I would like to change it to another name, e.g. "Test". How do I change the MSC disk name? Thanks!
Hi.
I am working on the MSC, and starting with the usbd_msc demo. The windows explorer will show a disk named "USB Drive" if connect to the PC.
I would like to change it to another name, e.g. "Test". How do I change the MSC disk name? Thanks!
Try to set #define _USE_LABEL 1 in ffconf.h and add f_setlabel("Test"); to end of fatfs_init().
Kenneth
It works. Thanks!