Skip to content

Commit

Permalink
Update driver instructions for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesus89 committed May 23, 2018
1 parent e518299 commit db3aef2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions app/scripts/services/drivers.js
Original file line number Diff line number Diff line change
Expand Up @@ -300,8 +300,7 @@ angular.module('icestudio')
*/

function enableWindowsDriversFTDI() {
var message = gettextCatalog.getString('<h4>FTDI driver installation instructions</h4><ol><li>Connect the FPGA board</li><li>Replace the <b>(Interface 0)</b> driver of the board by <b>libusbK</b></li><li>Unplug and reconnect the board</li></ol>') +
gettextCatalog.getString('It is recommended to use <b>USB 2.0</b> ports');
var message = gettextCatalog.getString('<h4>FTDI driver installation instructions</h4><ol><li>Connect the FPGA board to the USB and wait until Windows finishes the default installation of the driver</li><li>When the OK button is clicked, the FTDI driver installer will be launched in a new window</li><li>In the installer, replace the <b>(Interface 0)</b> driver of the board by <b>libusbK</b></li><li>Unplug and reconnect the board</li></ol>') + gettextCatalog.getString('It is recommended to use <b>USB 2.0</b> ports');
alertify.confirm(message, function () {
enableWindowsDrivers('ftdi');
});
Expand All @@ -315,7 +314,7 @@ angular.module('icestudio')
}

function enableWindowsDriversSerial() {
var message = gettextCatalog.getString('<h4>Serial driver installation instructions</h4><ol><li>Connect the FPGA board</li><li>Install the driver</li><li>Unplug and reconnect the board</li></ol>');
var message = gettextCatalog.getString('<h4>Serial driver installation instructions</h4><ol><li>Connect the FPGA board to the USB and wait until Windows finishes the default installation of the driver</li><li>When the OK button is clicked, the Serial driver installer will be launched in a new window</li><li>In the installer, follow the steps to install the driver</li><li>Unplug and reconnect the board</li></ol>');
alertify.confirm(message, function () {
enableWindowsDrivers('serial');
});
Expand Down

0 comments on commit db3aef2

Please sign in to comment.