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

Commit 02879b4

Browse files
committed
osx drivers: vid/pid change
JIRA: ATLEDGE-181 Signed-off-by: Krzysztof Sywula <[email protected]>
1 parent 3c51ce7 commit 02879b4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

clupload/cluploadEDU_osx.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,22 @@ echo "BIN FILE" $bin_file_name
1818

1919
#DFU=DYNLD_LIBRARY_PATH=$fixed_path $fixed_path/dfu-util
2020
DYLD_LIBRARY_PATH=$fixed_path
21-
DFU=$fixed_path/dfu-util
21+
DFU="$fixed_path/dfu-util -d8087:0ABA"
2222

2323
echo "wating for device... "
2424
COUNTER=0
25-
f=`DYLD_LIBRARY_PATH=$fixed_path $DFU -l -d8087:0a99 | grep sensor_core | cut -f 1 -d ' '`
25+
f=`DYLD_LIBRARY_PATH=$fixed_path $DFU -l | grep sensor_core | cut -f 1 -d ' '`
2626
while [ "x$f" = "x" ] && [ $COUNTER -lt 10 ]
2727
do
2828
let COUNTER=COUNTER+1
2929
sleep 1
3030
echo $DFU
31-
f=`DYLD_LIBRARY_PATH=$fixed_path $DFU -l -d8087:0a99 | grep sensor_core | cut -f 1 -d ' '`
31+
f=`DYLD_LIBRARY_PATH=$fixed_path $DFU -l | grep sensor_core | cut -f 1 -d ' '`
3232
done
3333

3434
if [ "x$f" != "x" ] ; then
3535
echo "Using dfu-util to send " $bin_file_name
36-
DYLD_LIBRARY_PATH=$fixed_path $DFU -d8087:0a99 -D $bin_file_name -v --alt 7 -R
36+
DYLD_LIBRARY_PATH=$fixed_path $DFU -D $bin_file_name -v --alt 7 -R
3737
else
3838
echo "ERROR: Timed out waiting for Intel EDU."
3939
fi

0 commit comments

Comments
 (0)