Refs #789. Corrected function call in the port template.

git-svn-id: https://svn.code.sf.net/p/openblt/code/trunk@1142 5dc33758-31d5-4daf-9ae8-b24bf3d40d73
This commit is contained in:
Frank Voorburg 2023-12-09 12:30:37 +00:00
parent 99a723ea1f
commit 8805d899f2
1 changed files with 3 additions and 3 deletions

View File

@ -125,13 +125,13 @@ void MbRtuInit(void)
MbRtuDriverOutputControlHook(BLT_FALSE);
/* wait for idle line detection. This is T3_5 time after reception of the last byte. */
startTimeTicks = MbRtuFreeRunningCounterGetHook();
startTimeTicks = MbRtuFreeRunningCounterGet();
do
{
/* service the watchdog. */
CopService();
/* get the current value of the free running counter. */
currentTimeTicks = MbRtuFreeRunningCounterGetHook();
currentTimeTicks = MbRtuFreeRunningCounterGet();
/* check if a byte was received while waiting for the idle line. */
if (MbRtuReceiveByte(&rxDummy) == BLT_TRUE)
{
@ -248,7 +248,7 @@ blt_bool MbRtuReceivePacket(blt_int8u *data, blt_int8u *len)
static blt_int16u lastRxByteTimeTicks = 0;
/* get the current value of the free running counter. */
currentTimeTicks = MbRtuFreeRunningCounterGetHook();
currentTimeTicks = MbRtuFreeRunningCounterGet();
/* check for a newly received byte. */
if (MbRtuReceiveByte(&rxByte) == BLT_TRUE)