mirror of
https://github.com/g4klx/MMDVMHost.git
synced 2026-04-21 06:13:49 +00:00
Use correct parameter for Timers
This commit is contained in:
parent
f0fc7c7ec9
commit
a09587ed26
3 changed files with 4 additions and 4 deletions
2
Conf.cpp
2
Conf.cpp
|
|
@ -101,7 +101,7 @@ m_dstarModule("C"),
|
|||
m_dstarSelfOnly(false),
|
||||
m_dstarBlackList(),
|
||||
m_dstarAckReply(true),
|
||||
m_dstarAckTime(1000U),
|
||||
m_dstarAckTime(750U),
|
||||
m_dstarErrorReply(true),
|
||||
m_dmrEnabled(false),
|
||||
m_dmrBeacons(false),
|
||||
|
|
|
|||
|
|
@ -59,8 +59,8 @@ m_networkWatchdog(1000U, 0U, 1500U),
|
|||
m_rfTimeoutTimer(1000U, timeout),
|
||||
m_netTimeoutTimer(1000U, timeout),
|
||||
m_packetTimer(1000U, 0U, 300U),
|
||||
m_ackTimer(ackTime, 0U, 750U),
|
||||
m_errTimer(1000U, 0U, 750U),
|
||||
m_ackTimer(1000U, 0U, ackTime),
|
||||
m_errTimer(1000U, 0U, ackTime),
|
||||
m_interval(),
|
||||
m_elapsed(),
|
||||
m_rfFrames(0U),
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ Enable=1
|
|||
Module=C
|
||||
SelfOnly=0
|
||||
AckReply=1
|
||||
AckTime=1000
|
||||
AckTime=750
|
||||
ErrorReply=1
|
||||
|
||||
[DMR]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue