Actually send the heartbeat message...

This commit is contained in:
Unknown
2018-10-06 21:14:26 -04:00
parent 165838ccef
commit a4ebed742c
+1
View File
@@ -116,4 +116,5 @@ void CANSimple::send_heartbeat(Axis* axis){
txmsg.buf[5] = axis->current_state_ >> 8;
txmsg.buf[6] = axis->current_state_ >> 16;
txmsg.buf[7] = axis->current_state_ >> 24;
odCAN->write(txmsg);
}