This repository was archived by the owner on Oct 1, 2024. It is now read-only.
File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -210,7 +210,7 @@ export class ArduinoSettings implements IArduinoSettings {
210
210
}
211
211
212
212
if ( ! this . _arduinoPath ) { // Pop up vscode User Settings page when cannot resolve arduino path.
213
- vscode . window . showErrorMessage ( `Cannot find the arduino installation path . Please specify the "arduino.path" in the User Settings.` +
213
+ vscode . window . showErrorMessage ( `Cannot find Arduino IDE . Please specify the "arduino.path" in the User Settings.` +
214
214
" Requires a restart after change." ) ;
215
215
vscode . commands . executeCommand ( "workbench.action.openGlobalSettings" ) ;
216
216
} else if ( ! validateArduinoPath ( this . _arduinoPath ) ) { // Validate if arduino path is the correct path.
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export const EXAMPLES_URI = vscode.Uri.parse("arduino-manager://arduino/arduino-
22
22
export const messages = {
23
23
ARDUINO_FILE_ERROR : "The arduino.json file format is not correct." ,
24
24
NO_BOARD_SELECTED : "Please select the board type first." ,
25
- INVALID_ARDUINO_PATH : "Cannot find the Arduino installation path . You can specify the path in the user settings." ,
25
+ INVALID_ARDUINO_PATH : "Cannot find Arduino IDE . You can specify the path in the user settings." ,
26
26
FAILED_SEND_SERIALPORT : "Failed to send message to serial port." ,
27
27
SERIAL_PORT_NOT_STARTED : "Serial Monitor has not been started." ,
28
28
SEND_BEFORE_OPEN_SERIALPORT : "Please open a serial port first." ,
You can’t perform that action at this time.
0 commit comments