Refs #789. Added MbRtuFreeRunningCounterGet() to the template port.

git-svn-id: https://svn.code.sf.net/p/openblt/code/trunk@1132 5dc33758-31d5-4daf-9ae8-b24bf3d40d73
This commit is contained in:
Frank Voorburg 2023-12-05 14:38:26 +00:00
parent 6463959ad7
commit aff9cce7c1
1 changed files with 23 additions and 0 deletions

View File

@ -461,6 +461,29 @@ static void MbRtuTransmitByte(blt_int8u data, blt_bool end_of_packet)
}
}
} /*** end of MbRtuTransmitByte ***/
/************************************************************************************//**
** \brief Obtains the counter value of the 100 kHz free running counter. Note that
** each count represent 10 us. The Modbus RTU communication module uses this
** free running counter for Modbus RTU packet timing related purposes. The
** already available 1 ms timer does not have the needed resolution for this
** purpose.
** \return Current value of the free running counter.
**
****************************************************************************************/
blt_int16u MbRtuFreeRunningCounterGet(void)
{
blt_int16u result;
/* TODO ##Port Store the current value of the 100 kHz free running counter in the
* result variable.
*/
result = 0;
/* give the result back to the caller. */
return result;
} /*** end of MbRtuFreeRunningCounterGet ***/
#endif /* BOOT_COM_MBRTU_ENABLE > 0 */
/*********************************** end of mbrtu.c ************************************/