You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
port.on('data', function(line) {
if (line == undefined || !line.match(/^\$.+\*[0-9A-F]{2}$/)) {
return;
}
var data = nmea.parse(line); // need to catch or return false if nmea.parse returns error
if (data == undefined) {
return;
}
self.emit('data',data);
self.emit(data.type,data);
});
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: