Skip to content
This repository was archived by the owner on Aug 5, 2022. It is now read-only.

Commit 5ed916f

Browse files
committed
windows drivers: vid/pid change
JIRA: ATLEDGE-181 Signed-off-by: Krzysztof Sywula <krzysztof.m.sywula@intel.com>
1 parent 8423b9d commit 5ed916f

File tree

4 files changed

+13
-12
lines changed

4 files changed

+13
-12
lines changed

clupload/cluploadEDU_win.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ echo "Args to shell:" $*
1010
#path may contain \ need to change all to /
1111
dfu=${1}\\dfu-util.exe
1212
dfu=${dfu//\\/\/}
13+
dfu_cmd="$dfu -d8087:0ABA"
1314
sleep=${1}\\sleep.exe
1415
sleep=${sleep//\\/\/}
1516
path_to_exe=$1
@@ -32,20 +33,20 @@ echo "BIN FILE" $bin_file_name
3233

3334
echo "Waiting for device... "
3435
COUNTER=0
35-
$dfu -l -d 8087:0a99 >$tmp_dfu_output
36+
$dfu_cmd -l >$tmp_dfu_output
3637
f=`findstr sensor_core $tmp_dfu_output`
3738
while [ "x$f" = "x" ] && [ $COUNTER -lt 10 ]
3839
do
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`
4344
done
4445

4546
if [ "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
4950
else
5051
echo "ERROR: Timed out waiting for Intel EDU."
5152
fi

drivers/intc_composite.inf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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]
2828
ExcludeFromSelect=*

drivers/intc_libusb.inf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
DeviceName = "Intel EDU DFU Interface"
4242
VendorID = "VID_8087"
43-
ProductID = "PID_0A99"
43+
ProductID = "PID_0ABA"
4444
DeviceGUID = "{d35924d6-3e16-4a9e-9782-5524a4b79bac}"
4545
DeviceClassGUID = "{78a1c341-4539-11d3-b88d-00c04fad5171}"
4646
; Date MUST be in MM/DD/YYYY format

drivers/intc_serial.inf

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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
7272
StartType=3
7373
ErrorControl=1
7474
ServiceBinary=%12%\usbser.sys
75-
LoadOrderGroup=Base
75+
LoadOrderGroup=Base

0 commit comments

Comments
 (0)