Fix compile errors

This commit is contained in:
Stefano Calabretti
2022-02-23 18:59:57 +01:00
parent 588f8f1396
commit 38be086307
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -17,7 +17,7 @@ typedef struct {
static HalStatus receiveOne(ReceptionParams *rp);
static HalStatus receiveAll(ReceptionParams *rp);
static bool headerIsMultiFrame(MmrCanHeader *header, CanId targetId);
static bool headerIsMultiFrame(MmrCanHeader header, CanId targetId);
/**
@@ -77,7 +77,7 @@ static HalStatus receiveOne(ReceptionParams *rp) {
}
static always_inline bool headerIsMultiFrame(MmrCanHeader header, CanId targetId) {
static bool headerIsMultiFrame(MmrCanHeader header, CanId targetId) {
return
MMR_CAN_IsMultiFrame(header) &&
!MMR_CAN_IsMultiFrameEnd(header) &&