Skip to content

Commit f7bd1b9

Browse files
committed
Fixes #1 adding support for 16MHz. Found bug with missing output3ByteUDouble
1 parent 4db2884 commit f7bd1b9

File tree

2 files changed

+23
-6
lines changed

2 files changed

+23
-6
lines changed

SmallNMEA2000.cpp

+18-3
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77

88

99

10-
bool SNMEA2000::open() {
10+
bool SNMEA2000::open(byte clockSet) {
1111
if ( canIsOpen ) {
1212
return true;
1313
}
14-
uint8_t res = CAN.begin(CAN_250KBPS, MCP_8MHz);
14+
uint8_t res = CAN.begin(CAN_250KBPS, clockSet);
1515
if (res == CAN_OK ) {
1616
canIsOpen = true;
1717
delay(200);
@@ -329,6 +329,21 @@ void SNMEA2000::output3ByteDouble(double value, double precision) {
329329
outputByte((i>>16)&0xff);
330330
}
331331
}
332+
void SNMEA2000::output3ByteUDouble(double value, double precision) {
333+
if (value == SNMEA2000::n2kDoubleNA ) {
334+
// undef is 2147483647 = FFFFFF
335+
outputByte(0xff);
336+
outputByte(0xff);
337+
outputByte(0xff);
338+
} else {
339+
double vd=value/precision;
340+
vd = round(vd);
341+
int32_t i = (vd>=0 && vd<16777214L)?(int32_t)vd:16777214L;
342+
outputByte(i&0xff);
343+
outputByte((i>>8)&0xff);
344+
outputByte((i>>16)&0xff);
345+
}
346+
}
332347

333348
void SNMEA2000::output4ByteDouble(double value, double precision) {
334349
if (value == SNMEA2000::n2kDoubleNA ) {
@@ -340,7 +355,7 @@ void SNMEA2000::output4ByteDouble(double value, double precision) {
340355
} else {
341356
double vd=value/precision;
342357
vd = round(vd);
343-
int32_t i = (vd>=-2147483648L && vd<0x7ffffffe)?(int32_t)vd:0x7ffffffe;
358+
int32_t i = (vd>=-2147483648L && vd<2147483647L)?(int32_t)vd:2147483647L;
344359
outputByte(i&0xff);
345360
outputByte((i>>8)&0xff);
346361
outputByte((i>>16)&0xff);

SmallNMEA2000.h

+5-3
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ class SNMEA2000 {
262262
{
263263
};
264264

265-
bool open();
265+
bool open(byte clockSet = MCP_8MHz);
266266
void processMessages();
267267
void dumpStatus() {
268268
console->print(F("NMEA2000 Status open="));
@@ -305,6 +305,7 @@ class SNMEA2000 {
305305
void output2ByteDouble(double v, double p);
306306
void output2ByteUDouble(double v, double p);
307307
void output3ByteDouble(double v, double p);
308+
void output3ByteUDouble(double v, double p);
308309
void output4ByteDouble(double v, double p);
309310
void output4ByteUDouble(double v, double p);
310311

@@ -319,8 +320,6 @@ class SNMEA2000 {
319320
static constexpr double n2kDoubleNA=-1000000000.0;
320321
static const uint8_t n2kInt8NA=127;
321322

322-
protected:
323-
Print * console;
324323

325324
private:
326325
void handleISOAddressClaim(MessageHeader *messageHeader, byte * buffer, int len);
@@ -382,6 +381,9 @@ class SNMEA2000 {
382381
uint16_t packetErrors = 0;
383382
uint16_t frameErrors = 0;
384383

384+
protected:
385+
Print * console;
386+
385387

386388

387389
};

0 commit comments

Comments
 (0)