This repository was archived by the owner on Aug 5, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +13
-12
lines changed
Expand file tree Collapse file tree 4 files changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ echo "Args to shell:" $*
1010# path may contain \ need to change all to /
1111dfu=${1} \\ dfu-util.exe
1212dfu=${dfu// \\ / \/ }
13+ dfu_cmd=" $dfu -d8087:0ABA"
1314sleep=${1} \\ sleep.exe
1415sleep=${sleep// \\ / \/ }
1516path_to_exe=$1
@@ -32,20 +33,20 @@ echo "BIN FILE" $bin_file_name
3233
3334echo " Waiting for device... "
3435COUNTER=0
35- $dfu -l -d 8087:0a99 > $tmp_dfu_output
36+ $dfu_cmd -l > $tmp_dfu_output
3637f=` findstr sensor_core $tmp_dfu_output `
3738while [ " x$f " = " x" ] && [ $COUNTER -lt 10 ]
3839do
3940 let COUNTER=COUNTER+1
4041 $sleep 1
41- $dfu -l -d 8087:0a99 > $tmp_dfu_output
42+ $dfu_cmd -l > $tmp_dfu_output
4243 f=` findstr sensor_core $tmp_dfu_output `
4344done
4445
4546if [ " x$f " != " x" ] ; then
4647 echo " Using dfu-util to send " $bin_file_name
47- echo $dfu -d8087:0a99 -D $bin_file_name -v --alt 7 -R
48- $dfu -d8087:0a99 -D $bin_file_name -v --alt 7 -R
48+ echo $dfu_cmd -D $bin_file_name -v --alt 7 -R
49+ $dfu_cmd -D $bin_file_name -v --alt 7 -R
4950else
5051 echo " ERROR: Timed out waiting for Intel EDU."
5152fi
Original file line number Diff line number Diff line change @@ -18,11 +18,11 @@ CatalogFile = intc_composite.cat
1818
1919[Generic.NTx86]
2020; Intel EDU
21- %USBCompositeDevice% = Composite.Device,USB\VID_8087&PID_0A9F ; ACM+ACM
21+ %USBCompositeDevice% = Composite.Device,USB\VID_8087&PID_0AB6 ; ACM+ACM
2222
2323[Generic.NTamd64]
2424; Intel EDU
25- %USBCompositeDevice% = Composite.Device,USB\VID_8087&PID_0A9F ; ACM+ACM
25+ %USBCompositeDevice% = Composite.Device,USB\VID_8087&PID_0AB6 ; ACM+ACM
2626
2727[ControlFlags]
2828ExcludeFromSelect=*
Original file line number Diff line number Diff line change 4040
4141DeviceName = "Intel EDU DFU Interface"
4242VendorID = "VID_8087"
43- ProductID = "PID_0A99 "
43+ ProductID = "PID_0ABA "
4444DeviceGUID = "{d35924d6-3e16-4a9e-9782-5524a4b79bac}"
4545DeviceClassGUID = "{78a1c341-4539-11d3-b88d-00c04fad5171}"
4646; Date MUST be in MM/DD/YYYY format
Original file line number Diff line number Diff line change @@ -29,12 +29,12 @@ DefaultDestDir=12
2929;------------------------------------------------------------------------------
3030
3131[DeviceList]
32- %DESCRIPTION1%=DriverInstall, USB\VID_8087&PID_0A9F &MI_00
33- %DESCRIPTION2%=DriverInstall, USB\VID_8087&PID_0A9F &MI_02
32+ %DESCRIPTION1%=DriverInstall, USB\VID_8087&PID_0AB6 &MI_00
33+ %DESCRIPTION2%=DriverInstall, USB\VID_8087&PID_0AB6 &MI_02
3434
3535[DeviceList.NTamd64]
36- %DESCRIPTION1%=DriverInstall, USB\VID_8087&PID_0A9F &MI_00
37- %DESCRIPTION2%=DriverInstall, USB\VID_8087&PID_0A9F &MI_02
36+ %DESCRIPTION1%=DriverInstall, USB\VID_8087&PID_0AB6 &MI_00
37+ %DESCRIPTION2%=DriverInstall, USB\VID_8087&PID_0AB6 &MI_02
3838
3939
4040;------------------------------------------------------------------------------
@@ -72,4 +72,4 @@ ServiceType=1
7272StartType=3
7373ErrorControl=1
7474ServiceBinary=%12%\usbser.sys
75- LoadOrderGroup=Base
75+ LoadOrderGroup=Base
You can’t perform that action at this time.
0 commit comments