diff options
m--------- | deps/canutil | 10 | ||||
-rw-r--r-- | src/isotp/receive.c | 4 |
2 files changed, 8 insertions, 6 deletions
diff --git a/deps/canutil b/deps/canutil -Subproject 04a4db7d336ae2cae94ac3234086b22fbf1339f +Subproject 0b00bb6c3c5df70317775efd12b6fff418ff454 diff --git a/src/isotp/receive.c b/src/isotp/receive.c index b4978097..51562fcc 100644 --- a/src/isotp/receive.c +++ b/src/isotp/receive.c @@ -17,10 +17,12 @@ void isotp_receive_can_frame(IsoTpHandler* handler, // TODO use CanMessage struct from canutil library - allocate payload buffer // on stack, 8 bytes - // TODO this function should receive uint64_t... IsoTpProtocolControlInformation pci = (IsoTpProtocolControlInformation) getBitField(data, 0, 4, false); + IsoTpProtocolControlInformation pci = (IsoTpProtocolControlInformation) + getNibble(0, data, 64, LITTE_ENDIAN); + // TODO this is messed up! need a better API for grabbing bytes uint8_t payload_length = getBitField(data, 4, 4, false); uint8_t payload[payload_length]; |