Skip to content

Commit a1bec4d

Browse files
committed
Switched nsDownloading code back to emit 'Downloading' instead of '.' - the BP system will filter it as needed.
1 parent e1ff69f commit a1bec4d

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

messages.js

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -67,20 +67,20 @@ const neCommunicationFailed = 199;
6767

6868
// Notices, by ID
6969
notices = {
70-
[nsDownloading] : ".", /*Downloading*/
71-
[nsVerifyingRAM] : "Verifying RAM.",
72-
[nsDownloadSuccessful] : "Download successful.",
73-
[nsVerifyingEEPROM] : "Programming and verifying EEPROM.",
74-
[neDownloadFailed] : "Download failed.",
75-
[nePropellerNotFound] : "Propeller not found.",
76-
[neCanNotOpenPort] : "Can not open port %s.",
77-
[neCanNotSetBaudrate] : "Can not set port %s to baudrate %s.",
78-
[neUnknownPropellerVersion] : "Found Propeller version %d - expected version 1.",
79-
[neRAMChecksumFailed] : "RAM checksum failed!",
80-
[neEEPROMVerifyFailed] : "EEPROM verify failed!",
81-
[neCommunicationLost] : "Communication lost!", /*No response*/
82-
[neLoaderFailed] : "Loader failed.",
83-
[neCommunicationFailed] : "Communication failed!" /*Response unexpected*/
70+
[nsDownloading] : "Downloading",
71+
[nsVerifyingRAM] : "Verifying RAM",
72+
[nsDownloadSuccessful] : "Download successful!",
73+
[nsVerifyingEEPROM] : "Programming and verifying EEPROM",
74+
[neDownloadFailed] : "Download failed!",
75+
[nePropellerNotFound] : "Propeller not found",
76+
[neCanNotOpenPort] : "Can not open port %s",
77+
[neCanNotSetBaudrate] : "Can not set port %s to baudrate %s",
78+
[neUnknownPropellerVersion] : "Found Propeller version %d - expected version 1",
79+
[neRAMChecksumFailed] : "RAM checksum failed",
80+
[neEEPROMVerifyFailed] : "EEPROM verify failed",
81+
[neCommunicationLost] : "Communication lost", /*No response*/
82+
[neLoaderFailed] : "Loader failed",
83+
[neCommunicationFailed] : "Communication failed" /*Response unexpected*/
8484
};
8585

8686
function notice(noticeId = 0, values = []) {

0 commit comments

Comments
 (0)