Home
last modified time | relevance | path

Searched full:msecs (Results 1 – 25 of 34) sorted by relevance

12

/nrf52832-nimble/packages/NimBLE-latest/nimble/controller/include/controller/
H A Dble_ll_adv.h34 * advDelay: RAND[0, 10] msecs
40 #define BLE_LL_ADV_ITVL_MS_MIN (20) /* msecs */
41 #define BLE_LL_ADV_ITVL_MS_MAX (10240) /* msecs */
43 #define BLE_LL_ADV_ITVL_SCAN_MS_MIN (100) /* msecs */
44 #define BLE_LL_ADV_ITVL_NONCONN_MS_MIN (100) /* msecs */
45 #define BLE_LL_ADV_DELAY_MS_MIN (0) /* msecs */
46 #define BLE_LL_ADV_DELAY_MS_MAX (10) /* msecs */
47 #define BLE_LL_ADV_PDU_ITVL_LD_MS_MAX (10) /* msecs */
49 #define BLE_LL_ADV_STATE_HD_MAX (1280) /* msecs */
H A Dble_ll.h391 * winsize: The transmit window size = winsize * 1.25 msecs
392 * winoffset: The transmit window offset = winoffset * 1.25 msecs
393 * interval: The connection interval = interval * 1.25 msecs.
395 * timeout: Connection supervision timeout = timeout * 10 msecs.
H A Dble_ll_sched.h90 * slot is 1.25 msecs in length. The number of slots in a period is determined
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/core/
H A Dtimeouts.c195 * @param msecs time in milliseconds after that the timer should expire
196 * @param handler callback function to call when msecs have elapsed
201 sys_timeout_debug(u32_t msecs, sys_timeout_handler handler, void *arg, const char* handler_name) in sys_timeout_debug() argument
204 sys_timeout(u32_t msecs, sys_timeout_handler handler, void *arg) in sys_timeout_debug()
227 timeout->time = msecs + diff; in sys_timeout_debug()
230 LWIP_DEBUGF(TIMERS_DEBUG, ("sys_timeout: %p msecs=%"U32_F" handler=%s arg=%p\n", in sys_timeout_debug()
231 (void *)timeout, msecs, handler_name, (void *)arg)); in sys_timeout_debug()
239 if (next_timeout->time > msecs) { in sys_timeout_debug()
240 next_timeout->time -= msecs; in sys_timeout_debug()
249 } else if (timeout->time > msecs) { in sys_timeout_debug()
[all …]
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/src/core/
H A Ddhcp.c229 u16_t msecs; in dhcp_check() local
240 msecs = 500; in dhcp_check()
241 dhcp->request_timeout = (msecs + DHCP_FINE_TIMER_MSECS - 1) / DHCP_FINE_TIMER_MSECS; in dhcp_check()
242 … | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_check(): set request timeout %"U16_F" msecs\n", msecs)); in dhcp_check()
287 u16_t msecs; in dhcp_select() local
327 msecs = (dhcp->tries < 6 ? 1 << dhcp->tries : 60) * 1000; in dhcp_select()
328 dhcp->request_timeout = (msecs + DHCP_FINE_TIMER_MSECS - 1) / DHCP_FINE_TIMER_MSECS; in dhcp_select()
329 …EBUGF(DHCP_DEBUG | LWIP_DBG_STATE, ("dhcp_select(): set request timeout %"U16_F" msecs\n", msecs)); in dhcp_select()
836 u16_t msecs; in dhcp_decline() local
858 msecs = 10*1000; in dhcp_decline()
[all …]
H A Dtimers.c257 * @param msecs time in milliseconds after that the timer should expire
258 * @param handler callback function to call when msecs have elapsed
263 sys_timeout_debug(u32_t msecs, sys_timeout_handler handler, void *arg, const char* handler_name) in sys_timeout_debug() argument
266 sys_timeout(u32_t msecs, sys_timeout_handler handler, void *arg) in sys_timeout_debug()
279 timeout->time = msecs; in sys_timeout_debug()
282 LWIP_DEBUGF(TIMERS_DEBUG, ("sys_timeout: %p msecs=%"U32_F" handler=%s arg=%p\n", in sys_timeout_debug()
283 (void *)timeout, msecs, handler_name, (void *)arg)); in sys_timeout_debug()
291 if (next_timeout->time > msecs) { in sys_timeout_debug()
292 next_timeout->time -= msecs; in sys_timeout_debug()
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/core/ipv4/
H A Ddhcp.c295 u16_t msecs; in dhcp_check() local
308 msecs = 500; in dhcp_check()
309 dhcp->request_timeout = (msecs + DHCP_FINE_TIMER_MSECS - 1) / DHCP_FINE_TIMER_MSECS; in dhcp_check()
310 … | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_check(): set request timeout %"U16_F" msecs\n", msecs)); in dhcp_check()
356 u16_t msecs; in dhcp_select() local
398 msecs = (dhcp->tries < 6 ? 1 << dhcp->tries : 60) * 1000; in dhcp_select()
399 dhcp->request_timeout = (msecs + DHCP_FINE_TIMER_MSECS - 1) / DHCP_FINE_TIMER_MSECS; in dhcp_select()
400 …EBUGF(DHCP_DEBUG | LWIP_DBG_STATE, ("dhcp_select(): set request timeout %"U16_F" msecs\n", msecs)); in dhcp_select()
923 u16_t msecs; in dhcp_decline() local
947 msecs = 10*1000; in dhcp_decline()
[all …]
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/src/include/lwip/
H A Dtimers.h80 void sys_timeout_debug(u32_t msecs, sys_timeout_handler handler, void *arg, const char* handler_nam…
81 #define sys_timeout(msecs, handler, arg) sys_timeout_debug(msecs, handler, arg, #handler) argument
83 void sys_timeout(u32_t msecs, sys_timeout_handler handler, void *arg);
H A Dtcpip.h113 err_t tcpip_timeout(u32_t msecs, sys_timeout_handler h, void *arg);
153 u32_t msecs; member
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/core/ipv4/
H A Ddhcp.c307 u16_t msecs; in dhcp_check() local
320 msecs = 500; in dhcp_check()
321 dhcp->request_timeout = (u16_t)((msecs + DHCP_FINE_TIMER_MSECS - 1) / DHCP_FINE_TIMER_MSECS); in dhcp_check()
322 … | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_check(): set request timeout %"U16_F" msecs\n", msecs)); in dhcp_check()
370 u16_t msecs; in dhcp_select() local
419 msecs = (u16_t)((dhcp->tries < 6 ? 1 << dhcp->tries : 60) * 1000); in dhcp_select()
420 dhcp->request_timeout = (u16_t)((msecs + DHCP_FINE_TIMER_MSECS - 1) / DHCP_FINE_TIMER_MSECS); in dhcp_select()
421 …EBUGF(DHCP_DEBUG | LWIP_DBG_STATE, ("dhcp_select(): set request timeout %"U16_F" msecs\n", msecs)); in dhcp_select()
939 u16_t msecs; in dhcp_decline() local
967 msecs = 10 * 1000; in dhcp_decline()
[all …]
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/include/lwip/
H A Dtimeouts.h99 void sys_timeout_debug(u32_t msecs, sys_timeout_handler handler, void *arg, const char* handler_nam…
100 #define sys_timeout(msecs, handler, arg) sys_timeout_debug(msecs, handler, arg, #handler) argument
102 void sys_timeout(u32_t msecs, sys_timeout_handler handler, void *arg);
H A Dtcpip.h96 err_t tcpip_timeout(u32_t msecs, sys_timeout_handler h, void *arg);
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/lwip/
H A Dtimeouts.h106 void sys_timeout_debug(u32_t msecs, sys_timeout_handler handler, void *arg, const char* handler_nam…
107 #define sys_timeout(msecs, handler, arg) sys_timeout_debug(msecs, handler, arg, #handler) argument
109 void sys_timeout(u32_t msecs, sys_timeout_handler handler, void *arg);
H A Dtcpip.h99 err_t tcpip_timeout(u32_t msecs, sys_timeout_handler h, void *arg);
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/core/
H A Dtimeouts.c281 * @param msecs time in milliseconds after that the timer should expire
282 * @param handler callback function to call when msecs have elapsed
287 sys_timeout_debug(u32_t msecs, sys_timeout_handler handler, void *arg, const char *handler_name) in sys_timeout_debug() argument
290 sys_timeout(u32_t msecs, sys_timeout_handler handler, void *arg) in sys_timeout_debug()
297 …LWIP_ASSERT("Timeout time too long, max is LWIP_UINT32_MAX/4 msecs", msecs <= (LWIP_UINT32_MAX / 4… in sys_timeout_debug()
299 next_timeout_time = (u32_t)(sys_now() + msecs); /* overflow handled by TIME_LESS_THAN macro */ in sys_timeout_debug()
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/api/
H A Dtcpip.c132 sys_timeout(msg->msg.tmo.msecs, msg->msg.tmo.h, msg->msg.tmo.arg); in tcpip_thread()
263 * @param msecs time in milliseconds for timeout
269 tcpip_timeout(u32_t msecs, sys_timeout_handler h, void *arg) in tcpip_timeout() argument
281 msg->msg.tmo.msecs = msecs; in tcpip_timeout()
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/api/
H A Dtcpip.c184 sys_timeout(msg->msg.tmo.msecs, msg->msg.tmo.h, msg->msg.tmo.arg); in tcpip_thread_handle_msg()
371 * @param msecs time in milliseconds for timeout
377 tcpip_timeout(u32_t msecs, sys_timeout_handler h, void *arg) in tcpip_timeout() argument
389 msg->msg.tmo.msecs = msecs; in tcpip_timeout()
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/src/api/
H A Dtcpip.c123 sys_timeout(msg->msg.tmo.msecs, msg->msg.tmo.h, msg->msg.tmo.arg); in tcpip_thread()
247 tcpip_timeout(u32_t msecs, sys_timeout_handler h, void *arg) in tcpip_timeout() argument
258 msg->msg.tmo.msecs = msecs; in tcpip_timeout()
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/core/ipv6/
H A Ddhcp6.c455 u16_t msecs; in dhcp6_information_request() local
484 msecs = (u16_t)((dhcp6->tries < 6 ? 1 << dhcp6->tries : 60) * 1000); in dhcp6_information_request()
485 dhcp6->request_timeout = (u16_t)((msecs + DHCP6_TIMER_MSECS - 1) / DHCP6_TIMER_MSECS); in dhcp6_information_request()
486 …CE | LWIP_DBG_STATE, ("dhcp6_information_request(): set request timeout %"U16_F" msecs\n", msecs)); in dhcp6_information_request()
/nrf52832-nimble/packages/NimBLE-latest/nimble/controller/
H A Dsyscfg.yml136 connections. Each slot is 1.25 msecs long. Note that a connection event may
148 msecs long. Increasing this value will delay first connection event after
/nrf52832-nimble/packages/NimBLE-latest/nimble/controller/src/
H A Dble_ll_sched.c337 * slave is 1.25 msecs from the end of the connection request. The in ble_ll_sched_master_new()
353 * time is more than a transmit window offset interval (1.25 msecs). The in ble_ll_sched_master_new()
358 * window interval is in units of 1.25 msecs and has to be at least 1. To in ble_ll_sched_master_new()
567 * slave is 1.25 msecs from the end of the connection request. The in ble_ll_sched_master_new()
583 * time is more than a transmit window offset interval (1.25 msecs). The in ble_ll_sched_master_new()
588 * window interval is in units of 1.25 msecs and has to be at least 1. To in ble_ll_sched_master_new()
H A Dble_ll_conn_priv.h57 /* Default authenticated payload timeout (30 seconds; in 10 msecs increments) */
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/include/lwip/priv/
H A Dtcpip_priv.h146 u32_t msecs; member
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/lwip/priv/
H A Dtcpip_priv.h156 u32_t msecs; member
/nrf52832-nimble/packages/NimBLE-latest/apps/bletest/src/
H A Dbletest.c102 * NOTE: currently, these are all NONCONN_IND. Thus, must be 100 msecs or
1048 * Main bletest function. Called by the task timer every 50 msecs.
1081 /* Re-start the timer (run every 10 msecs) */ in bletest_timer_cb()

12