/nrf52832-nimble/packages/NimBLE-latest/nimble/controller/include/controller/ |
H A D | ble_ll_adv.h | 34 * 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 D | ble_ll.h | 391 * 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 D | ble_ll_sched.h | 90 * 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 D | timeouts.c | 195 * @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 D | dhcp.c | 229 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 D | timers.c | 257 * @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 D | dhcp.c | 295 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 D | timers.h | 80 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 D | tcpip.h | 113 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 D | dhcp.c | 307 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 D | timeouts.h | 99 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 D | tcpip.h | 96 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 D | timeouts.h | 106 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 D | tcpip.h | 99 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 D | timeouts.c | 281 * @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 D | tcpip.c | 132 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 D | tcpip.c | 184 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 D | tcpip.c | 123 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 D | dhcp6.c | 455 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 D | syscfg.yml | 136 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 D | ble_ll_sched.c | 337 * 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 D | ble_ll_conn_priv.h | 57 /* 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 D | tcpip_priv.h | 146 u32_t msecs; member
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/lwip/priv/ |
H A D | tcpip_priv.h | 156 u32_t msecs; member
|
/nrf52832-nimble/packages/NimBLE-latest/apps/bletest/src/ |
H A D | bletest.c | 102 * 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()
|