Skip to content

Commit

Permalink
Merge pull request #1216 from valeriyvan/receieve
Browse files Browse the repository at this point in the history
Fix spelling recieve => receive
  • Loading branch information
krichardsson authored Feb 7, 2023
2 parents 5bad2aa + 3e2276a commit 6db4fea
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/hal/interface/ow.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void owInit();
bool owTest();
void owCommonInit();
bool owCommonTest();
void owSyslinkRecieve(SyslinkPacket *slp);
void owSyslinkReceive(SyslinkPacket *slp);
bool owScan(uint8_t *nMem);
bool owGetinfo(uint8_t selectMem, OwSerialNum *serialNum);
bool owRead(uint8_t selectMem, uint16_t address, uint8_t length, uint8_t *data);
Expand Down
2 changes: 1 addition & 1 deletion src/hal/src/ow_none.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ bool owTest()
return owCommonTest();
}

void owSyslinkRecieve(SyslinkPacket *slp)
void owSyslinkReceive(SyslinkPacket *slp)
{
}

Expand Down
2 changes: 1 addition & 1 deletion src/hal/src/ow_syslink.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ bool owTest()
return owCommonTest();
}

void owSyslinkRecieve(SyslinkPacket *slp)
void owSyslinkReceive(SyslinkPacket *slp)
{
switch (slp->type)
{
Expand Down
2 changes: 1 addition & 1 deletion src/hal/src/syslink.c
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ static void syslinkRouteIncommingPacket(SyslinkPacket *slp)
pmSyslinkUpdate(slp);
break;
case SYSLINK_OW_GROUP:
owSyslinkRecieve(slp);
owSyslinkReceive(slp);
break;
case SYSLINK_SYS_GROUP:
systemSyslinkReceive(slp);
Expand Down

0 comments on commit 6db4fea

Please sign in to comment.