[cert] increase retransmission period for data poll (#1943)

This commit is contained in:
rongli
2017-06-29 00:33:49 +08:00
committed by Jonathan Hui
parent 449841f819
commit f8f167bc40
+1 -1
View File
@@ -198,7 +198,7 @@ private:
enum // Poll period under different conditions (in milliseconds).
{
kAttachDataPollPeriod = OPENTHREAD_CONFIG_ATTACH_DATA_POLL_PERIOD, ///< Poll period during attach.
kRetxPollPeriod = 500, ///< Poll retx period due to tx failure.
kRetxPollPeriod = 1000, ///< Poll retx period due to tx failure.
kNoBufferRetxPollPeriod = 200, ///< Poll retx due to no buffer space.
kFastPollPeriod = 188, ///< Period used for fast polls.
kMinPollPeriod = 10, ///< Minimum allowed poll period.