Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error handling needed for line parsing #2

Open
adambarthelson opened this issue Apr 29, 2015 · 0 comments
Open

Error handling needed for line parsing #2

adambarthelson opened this issue Apr 29, 2015 · 0 comments

Comments

@adambarthelson
Copy link

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);
    });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant