Updated windows driver installer bat, with changes by Tim, so that it works if the path to the driver bat has spaces in it
This commit is contained in:
parent
d8634c071f
commit
00d27a24bd
|
@ -1,9 +1,11 @@
|
|||
@echo off
|
||||
|
||||
echo Installing Maple DFU driver...
|
||||
%~dp0wdi-simple --vid 0x1EAF --pid 0x0003 --type 1 --name "Maple DFU" --dest %~dp0maple-dfu
|
||||
"%~dp0wdi-simple" --vid 0x1EAF --pid 0x0003 --type 1 --name "Maple DFU" --dest "%~dp0maple-dfu"
|
||||
echo.
|
||||
|
||||
echo Installing Maple Serial driver...
|
||||
%~dp0wdi-simple --vid 0x1EAF --pid 0x0004 --type 3 --name "Maple Serial" --dest %~dp0maple-serial
|
||||
"%~dp0wdi-simple" --vid 0x1EAF --pid 0x0004 --type 3 --name "Maple Serial" --dest "%~dp0maple-serial"
|
||||
echo.
|
||||
|
||||
pause
|
||||
|
|
Loading…
Reference in New Issue