[SOLVED][SOLUTION]
Hi folks,
I figured it out and I like to share my new knowledge to the world :)
Introduction for Newbies (like me)
==================================
First of all (as already known) there are two states in which the stm32/Maple Board could be - first the "bootloader mode" and second the "user program mode". If there is no user program on the uC, it stays in the "bootloader mode", because there is no program in which it could jump in. This happens with a factory new uC or after flashing the bootloader. While connected to a PC (or power source), the stm32/Maple Board goes first for about 3-5 sec in the "bootloader mode". After this time is elapsed, it changes into the "user program mode". For the device/hardware managers of all operating systems on PCs, every mode appears as a separate hardware device with a separate device name.
Essence
=======
The device name for the "bootloader mode" differs from the device name of the "user program mode". In addition the places where the names are stored differs too. You can change the device name of each mode separately.
The "bootloader mode device" name is stored in the "usb_descriptor.c" in the maple bootloader. To change this name you need to flash the bootloader according to this manual: http://leaflabs.com/docs/bootloader.html and change some values in the file "usb_descriptor.c". These values are u8_usbStringVendor and u8_usbStringProduct. You need to do this (of course) before compiling and flashing. You need to adapt the string length in hex - be patient, you need to add 3 to the string length (I don't know why). You also need to change the string length in the bottom of the file.
The "user program mode" name is stored in the Maple IDE in the "descriptor.c" file. You can find this file in [MAPLE IDE PATH]/hardware/leaflabs/cores/maple. Here you can find the values "usbVcomDescriptor_iManufacturer" and "usbVcomDescriptor_iProduct". Again, you have to adapt the string length of these values. The "user program mode" name will change when you upload a new user program.
That's it. Hope I could help some people out there with these informations.
Cheers
[SOLVED][SOLUTION]