demo板子 使用官方SDK 无论是usb的一些示例或者flashloader工程 都能正常通信
但是直接进入bootrom 或者使用ROMAPI
uint32_t arg = 0xeb110000;
ROM_RunBootloader(&arg);
都无法建立usb通信 电脑显示这个usb口 描述符获取失败
使用官方开发板都可以成功
请问往哪个方向寻找问题
Please check the following bits value after system boot.. It should be 00 or 01, then system can enter SDP mode. Otherwise, it cannot go to SDP.
Hi,
Chapter 9.13.3 ROM API runBootloader() description with below typical use cases:
1. Enter Serial downloader mode and select USB as the communication peripheral.
uint32_t arg = 0xeb100000;
runBootloader (&arg);
Could you try with arg value with 0xeb100000? Set serial downloader media to Auto detection.
Wish it hleps.
Mike