eclipse-threadx / usbx

Eclipse ThreadX - USBX is a high-performance USB host, device, and on-the-go (OTG) embedded stack, that is fully integrated with Eclipse ThreadX RTOS
https://github.com/eclipse-threadx/rtos-docs/blob/main/rtos-docs/usbx/index.md
MIT License
148 stars 88 forks source link

如何在windows上使用rndis? #70

Closed chengshuihang closed 1 year ago

chengshuihang commented 2 years ago

您好,假设我已经在设备上完成了rndis的适配,需要在windows上测试的话,pc上需要做哪些工作?RNDIS_Template.inf如何使用?

xiaocq2001 commented 2 years ago

Get template here: https://docs.microsoft.com/en-us/windows-hardware/drivers/network/remote-ndis-inf-template, to create inf file Replace USB\VID_xxxx&PID_yyyy with your VID and PID. Make the inf digitally signed.

When connect your application to PC the device may appear as serial port, change the driver to the INF you created and signed.

chengshuihang commented 2 years ago

好的,谢谢!