我思故我在12345 发表于 2014-9-17 11:40 
我的板子电感没焊好,现在焊好了,电压正常了,USB-otg-vbus是5v,USB-otg-gnd是0V,但是设备管理器和mfgt ...
Mfg tool uses global configuration to recognize which device the user wants to flash among different USB devices connected to the PC.
Let’s explain it by an example.
<CFG>
<STATE name="BootStrap" dev="MX6Q" vid="15A2" pid="0054"/>
<STATE name="Updater" dev="MSC" vid="066F" pid="37FF"/>
</CFG>
Global configuration is contained between parameter <CFG> and </CFG>.
<STATE name="BootStrap" dev="MX6Q" vid="15A2" pid="0054"/> indicates the first phase of the burning process, the phase name is “BootStrap”, and a device named “MX6Q” should be connected with the USB pid “0054” and vid “15A2”. For i.MX 6 serial, in the phase “BootStrap”, the valid strings for dev are: “MX6Q”, “MX6D”, “MX6SL”; in the phase “Updater”, the valid string for dev is: “MSC”.
<STATE name="Updater" dev="MSC" vid="066F" pid="37FF"/> indicates the second phase of the burning process, the phase name is “Updater”, and a device named “MSC” should be connected with the USB pid “37FF” and vid “066F”.
|