Hello, In 1.1.0, we introduce Synergy-specific #defines with address offsets & etc. When you initialize your host stack with the line: /* Register all the USB host controllers available in this system */ ux_host_stack_hcd_register((UCHAR*)"YRDKRX63N", _ux_hcd_rx_initialize, UX_RX_HC_USB_BASE, UX_RX_CONTROLLER_RX62N); You need to replace it with: ux_host_stack_hcd_register((UCHAR*) "ANYTHING", _ux_hcd_synergy_initialize, 0x40060000UL, UX_SYNERGY_CONTROLLER_S7G2); 3rd argument is currently a fixed value as ux_hcd_synergy.h has #define UX_SYNERGY_USB_BASE commented out. This should register the stack properly and supply power to the USB host controller.
↧