2026-02-04 3:18 AM
Hello,
I'm using STM32CubeIDE 2.0.0 + STM32CubeMX 6.16.1 + FW_H7 V1.12.1
I have a problem with USBX RNDIS.
The generated code on file ux_device_descriptor.h at line 308 is:
#define USBD_RNDIS_EPINCMD_ADDR 0x81U
In the exemple code of STM32H735-DK find on stm32-usbx-exemple repo I have this
#define USBD_RNDIS_EPINCMD_ADDR 0x82U
The USB device is well recognized be my computer (windows 11) only if the value is 0x82U.
My questions:
- why it doesn't work with 0x81
- is there is a tips to modify this value on Cube ? Actually I add an error at the end of the file if value is 0x81..
Thanks for help !