"USB CDC" does not work on K32L2B3

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

"USB CDC" does not work on K32L2B3

1,205件の閲覧回数
tetsuo_mikami
Contributor I

Hello, All

I am using FRDM-K32L2B3. The SDK is SDK_2.8.0_FRDM-K32L2B.
I want to use a USB CDC on this board, so I enabled "USB Device CDC" in Middleware.
I also included serial_manager and called SerialManager_Init ().
The call to SerialManager_Init () was successful.

serial_manager_status_t ret;
serial_manager_config_t config;
serial_port_usb_cdc_config_t usbCdcConfig;
config.type = kSerialPort_UsbCdc;
config.ringBuffer = &s_ringBuffer[0];
config.ringBufferSize = SERIAL_MANAGER_RING_BUFFER_SIZE;
usbCdcConfig.controllerIndex = kSerialManager_UsbControllerKhci0;
config.portConfig = &usbCdcConfig;
SerialManager_Init(s_serialHandle, &config);


When I boot the board and connect it to Windows 10 with a USB cable, it becomes an unknown device on my Windows10 PC.
I need a solution in a hurry! If anyone has any useful information about these, please let me know.

0 件の賞賛
返信
0 返答(返信)