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
I had to make some minor changed to get the integration to work with the Miniplex 3 and a Seatalk 1 connected autopilot. Could those changed be reviewed and corrected?
raymarinest.js
Change code from
function toSentence(parts) {
var base = parts.join(',');
return base + computeChecksum(base);
}
Change code to work with EV-1 on ST1
function toSentence(parts) {
var base = parts.join(',');
return base;
}
Change code from
var sentence = toSentence([
'$PSMDST',
datagram
Change code to work with new ST sentences V2.0
var sentence = toSentence([
'$PSMDST,C',
datagram
The text was updated successfully, but these errors were encountered:
Hi All,
I had to make some minor changed to get the integration to work with the Miniplex 3 and a Seatalk 1 connected autopilot. Could those changed be reviewed and corrected?
raymarinest.js
Change code from
Change code to work with EV-1 on ST1
Change code from
Change code to work with new ST sentences V2.0
The text was updated successfully, but these errors were encountered: