Code: Select all
I (11225) USB-CDC: Serial state notif 0xCBFC
W (11235) USB-CDC: Unsupported CDC event: 2
I (11735) USB-CDC: Serial state notif 0xCBFC
W (11735) USB-CDC: Unsupported CDC event: 2
Trying to figure out if maybe the state bits were somewhere else in the notify event, I modified cdc_acm_host.c to add a hexdump of the data:
Code: Select all
case USB_CDC_NOTIF_SERIAL_STATE: {
ESP_LOG_BUFFER_HEXDUMP("FOZZTEXX", notif, 16, ESP_LOG_INFO);
cdc_dev->serial_state.val = *((uint16_t *)notif->Data);
Code: Select all
I (13455) FOZZTEXX: 0x3fc9cc04 a1 20 00 00 00 00 02 00 fc cb c9 3f 48 00 00 00 |. .........?H...|
I (13455) USB-CDC: Serial state notif 0xCBFC
W (13455) USB-CDC: Unsupported CDC event: 2
I (13955) FOZZTEXX: 0x3fc9cc04 a1 20 00 00 00 00 02 00 fc cb c9 3f 48 00 00 00 |. .........?H...|
I (13955) USB-CDC: Serial state notif 0xCBFC: DSR: 0
W (13965) USB-CDC: Unsupported CDC event: 2
Is the state notification USB packet not being decoded correctly?