diff --git a/app/scripts/services/drivers.js b/app/scripts/services/drivers.js
index f132414f7..8b63503db 100644
--- a/app/scripts/services/drivers.js
+++ b/app/scripts/services/drivers.js
@@ -300,8 +300,7 @@ angular.module('icestudio')
*/
function enableWindowsDriversFTDI() {
- var message = gettextCatalog.getString('
FTDI driver installation instructions
- Connect the FPGA board
- Replace the (Interface 0) driver of the board by libusbK
- Unplug and reconnect the board
') +
- gettextCatalog.getString('It is recommended to use USB 2.0 ports');
+ var message = gettextCatalog.getString('FTDI driver installation instructions
- Connect the FPGA board to the USB and wait until Windows finishes the default installation of the driver
- When the OK button is clicked, the FTDI driver installer will be launched in a new window
- In the installer, replace the (Interface 0) driver of the board by libusbK
- Unplug and reconnect the board
') + gettextCatalog.getString('It is recommended to use USB 2.0 ports');
alertify.confirm(message, function () {
enableWindowsDrivers('ftdi');
});
@@ -315,7 +314,7 @@ angular.module('icestudio')
}
function enableWindowsDriversSerial() {
- var message = gettextCatalog.getString('Serial driver installation instructions
- Connect the FPGA board
- Install the driver
- Unplug and reconnect the board
');
+ var message = gettextCatalog.getString('Serial driver installation instructions
- Connect the FPGA board to the USB and wait until Windows finishes the default installation of the driver
- When the OK button is clicked, the Serial driver installer will be launched in a new window
- In the installer, follow the steps to install the driver
- Unplug and reconnect the board
');
alertify.confirm(message, function () {
enableWindowsDrivers('serial');
});