I am trying to implement PIC32 MCU as an audio device using USB audio class 1. I am implementing this project: PIC32 USB Digital Audio Accesory Board Demos.zip
and it works fine, but now I want to cut off some of the audio management interface, so I have more simple audio function:

The device, apparently, is correctly listed according to the status LED on the board and appears in the list of the device manager for audio devices, but has a small yellow exclamation mark. And when I connect the device, the windows tell me: "The device driver software was not installed successfully"
Does anyone have a key?
USB descriptors, code block:
ROM BYTE configDescriptor1[] ={
0x09,
0x02,
0xB4,
0x00,
0x03,
0x01,
0x00,
_DEFAULT | _SELF,
0xFA,
0x09,
0x04,
0x00,
0x00,
0x00,
0x01,
0x01,
0x00,
0x00,
0x0A,
0x24,
0x01,
0x00,0x01,
0x00,0x34,
0x02,
0x01,
0x02,
0x0C,
0x24,
0x02,
0x01,
0x01,0x01,
0x00,
0x02,
0x03,0x00,
0x00,
0x00,
0x0C,
0x24,
0x02,
0x04,
0x01,0x02,
0x00,
0x01,
0x01,0x00,
0x00,
0x00,
0x09,
0x24,
0x03,
0x03,
0x01,0x03,
0x00,
0x01,
0x00,
0x09,
0x24,
0x03,
0x06,
0x01,0x01,
0x00,
0x04,
0x00,
0x09,
0x04,
0x01,
0x00,
0x00,
0x01,
0x02,
0x00,
0x00,
0x09,
0x04,
0x01,
0x01,
0x01,
0x01,
0x02,
0x00,
0x00,
0x07,
0x24,
0x01,
0x01,
0x01,
0x01,0x00,
0x0E,
0x24,
0x02,
0x01,
0x02,
0x02,
0x10,
0x02,
0x80,0xBB,0x00,
0x00,0x7D,0x00,
0x09,
0x05,
0x01,
0x09,
AUDIO_MAX_SAMPLES * sizeof ( AUDIO_PLAY_SAMPLE ), 0x00,
0x01,
0x00,
0x00,
0x07,
0x25,
0x01,
0x01,
0x00,
0x00,0x00,
0x09,
0x04,
0x02,
0x00,
0x00,
0x01,
0x02,
0x00,
0x00,
0x09,
0x04,
0x02,
0x01,
0x01,
0x01,
0x02,
0x00,
0x00,
0x07,
0x24,
0x01,
0x06,
0x01,
0x01,0x00,
0x0E,
0x24,
0x02,
0x01,
0x02,
0x02,
0x10,
0x02,
0x80,0xBB,0x00,
0x00,0x7D,0x00,
0x09,
0x05,
0x82,
0x05,
AUDIO_MAX_SAMPLES * (sizeof ( AUDIO_PLAY_SAMPLE )), 0x00,
0x01,
0x00,
0x00,
0x07,
0x25,
0x01,
0x01,
0x00,
0x00,0x00,
};