/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/lwip/ |
H A D | dhcp.h | 52 /** period (in seconds) of the application calling dhcp_coarse_tmr() */ 54 /** period (in milliseconds) of the application calling dhcp_coarse_tmr() */ 56 /** period (in milliseconds) of the application calling dhcp_fine_tmr() */ 82 u16_t request_timeout; /* #ticks with period DHCP_FINE_TIMER_SECS for request timeout */ 83 u16_t t1_timeout; /* #ticks with period DHCP_COARSE_TIMER_SECS for renewal time */ 84 u16_t t2_timeout; /* #ticks with period DHCP_COARSE_TIMER_SECS for rebind time */ 85 u16_t t1_renew_time; /* #ticks with period DHCP_COARSE_TIMER_SECS until next renew try */ 86 u16_t t2_rebind_time; /* #ticks with period DHCP_COARSE_TIMER_SECS until next rebind try */ 87 u16_t lease_used; /* #ticks with period DHCP_COARSE_TIMER_SECS since last received DHCP ack */ 88 u16_t t0_timeout; /* #ticks with period DHCP_COARSE_TIMER_SECS for lease time */ [all …]
|
H A D | dhcp6.h | 54 /** period (in milliseconds) of the application calling dhcp6_tmr() */ 69 /** #ticks with period DHCP6_TIMER_MSECS for request timeout */
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/include/lwip/ |
H A D | dhcp.h | 52 /** period (in seconds) of the application calling dhcp_coarse_tmr() */ 54 /** period (in milliseconds) of the application calling dhcp_coarse_tmr() */ 56 /** period (in milliseconds) of the application calling dhcp_fine_tmr() */ 87 u16_t request_timeout; /* #ticks with period DHCP_FINE_TIMER_SECS for request timeout */ 88 u16_t t1_timeout; /* #ticks with period DHCP_COARSE_TIMER_SECS for renewal time */ 89 u16_t t2_timeout; /* #ticks with period DHCP_COARSE_TIMER_SECS for rebind time */ 90 u16_t t1_renew_time; /* #ticks with period DHCP_COARSE_TIMER_SECS until next renew try */ 91 u16_t t2_rebind_time; /* #ticks with period DHCP_COARSE_TIMER_SECS until next rebind try */ 92 u16_t lease_used; /* #ticks with period DHCP_COARSE_TIMER_SECS since last received DHCP ack */ 93 u16_t t0_timeout; /* #ticks with period DHCP_COARSE_TIMER_SECS for lease time */ [all …]
|
/nrf52832-nimble/nordic/nrfx/hal/ |
H A D | nrf_qdec.h | 135 …NRF_QDEC_SAMPLEPER_128us = QDEC_SAMPLEPER_SAMPLEPER_128us, /**< QDEC sampling period 128 micros… 136 …NRF_QDEC_SAMPLEPER_256us = QDEC_SAMPLEPER_SAMPLEPER_256us, /**< QDEC sampling period 256 micros… 137 …NRF_QDEC_SAMPLEPER_512us = QDEC_SAMPLEPER_SAMPLEPER_512us, /**< QDEC sampling period 512 micros… 138 …NRF_QDEC_SAMPLEPER_1024us = QDEC_SAMPLEPER_SAMPLEPER_1024us, /**< QDEC sampling period 1024 micro… 139 …NRF_QDEC_SAMPLEPER_2048us = QDEC_SAMPLEPER_SAMPLEPER_2048us, /**< QDEC sampling period 2048 micro… 140 …NRF_QDEC_SAMPLEPER_4096us = QDEC_SAMPLEPER_SAMPLEPER_4096us, /**< QDEC sampling period 4096 micro… 141 …NRF_QDEC_SAMPLEPER_8192us = QDEC_SAMPLEPER_SAMPLEPER_8192us, /**< QDEC sampling period 8192 micro… 142 …NRF_QDEC_SAMPLEPER_16384us = QDEC_SAMPLEPER_SAMPLEPER_16384us /**< QDEC sampling period 16384 micr… 151 … NRF_QDEC_REPORTPER_10 = QDEC_REPORTPER_REPORTPER_10Smpl, /**< QDEC report period 10 samples. */ 152 … NRF_QDEC_REPORTPER_40 = QDEC_REPORTPER_REPORTPER_40Smpl, /**< QDEC report period 40 samples. */ [all …]
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/host/mesh/src/ |
H A D | access.c | 77 int period; in bt_mesh_model_pub_period_get() local 83 switch (mod->pub->period >> 6) { in bt_mesh_model_pub_period_get() 86 period = K_MSEC((mod->pub->period & BIT_MASK(6)) * 100); in bt_mesh_model_pub_period_get() 90 period = K_SECONDS(mod->pub->period & BIT_MASK(6)); in bt_mesh_model_pub_period_get() 94 period = K_SECONDS((mod->pub->period & BIT_MASK(6)) * 10); in bt_mesh_model_pub_period_get() 98 period = K_MINUTES((mod->pub->period & BIT_MASK(6)) * 10); in bt_mesh_model_pub_period_get() 104 return period >> mod->pub->period_div; in bt_mesh_model_pub_period_get() 110 u32_t elapsed, period; in next_period() local 112 period = bt_mesh_model_pub_period_get(mod); in next_period() 113 if (!period) { in next_period() [all …]
|
H A D | health_srv.c | 284 BT_ERR("Unable to send Health Period Status"); in send_health_period_status() 303 u8_t period; in health_period_set_unrel() local 305 period = net_buf_simple_pull_u8(buf); in health_period_set_unrel() 306 if (period > 15) { in health_period_set_unrel() 307 BT_WARN("Prohibited period value %u", period); in health_period_set_unrel() 311 BT_DBG("period %u", period); in health_period_set_unrel() 313 model->pub->period_div = period; in health_period_set_unrel()
|
H A D | settings.c | 53 u8_t period; member 103 u8_t period; member 460 pub->period = 0; in hb_pub_set() 481 pub->period = hb_val.period; in hb_pub_set() 597 mod->pub->period = 0; in mod_set_pub() 621 mod->pub->period = pub.period; in mod_set_pub() 761 BT_DBG("Starting publish timer (period %u ms)", ms); in commit_mod() 806 hb_pub->count && hb_pub->period) { in mesh_commit() 1029 val.period = pub->period; in store_pending_hb_pub() 1287 pub.period = mod->pub->period; in store_pending_mod_pub()
|
H A D | shell.c | 1516 pub.period, BT_MESH_PUB_TRANSMIT_COUNT(pub.transmit), in mod_pub_get() 1533 pub.period = strtoul(argv[4], NULL, 0); in mod_pub_set() 1607 "<AppKeyIndex> <cred> <ttl> <period> <count> <interval>]" , NULL 1619 sub->src, sub->dst, sub->period, sub->count, in hb_sub_print() 1653 sub.period = strtoul(argv[3], NULL, 0); in hb_sub_set() 1685 NULL, "<src> <dst> <period>", NULL 1707 printk("\tdst 0x%04x count 0x%02x period 0x%02x\n", in hb_pub_get() 1708 pub.dst, pub.count, pub.period); in hb_pub_get() 1723 pub.period = strtoul(argv[3], NULL, 0); in hb_pub_set() 1758 NULL, "<dst> <count> <period> <ttl> <features> <NetKeyIndex>" , NULL [all …]
|
H A D | cfg_srv.c | 244 u16_t app_idx, u8_t cred_flag, u8_t ttl, u8_t period, in _mod_pub_set() argument 255 if (!model->pub->update && period) { in _mod_pub_set() 268 model->pub->period = 0; in _mod_pub_set() 291 model->pub->period = period; in _mod_pub_set() 298 BT_DBG("period %u ms", period_ms); in _mod_pub_set() 1065 net_buf_simple_add_u8(msg, mod->pub->period); in send_mod_pub_status() 2319 cfg->hb_pub.period = 0; in hb_pub_disable() 3025 net_buf_simple_add_u8(msg, cfg->hb_pub.period); in hb_pub_send_status() 3094 cfg->hb_pub.period = param->period_log; in heartbeat_pub_set() 3105 BT_DBG("period %u ms", hb_pwr2(param->period_log, 1) * 1000); in heartbeat_pub_set() [all …]
|
H A D | cfg_cli.c | 333 param->pub->period = net_buf_simple_pull_u8(buf); in mod_pub_status() 423 param->sub->period = net_buf_simple_pull_u8(buf); in hb_sub_status() 458 param->pub->period = net_buf_simple_pull_u8(buf); in hb_pub_status() 1235 net_buf_simple_add_u8(msg, pub->period); in mod_pub_set() 1305 net_buf_simple_add_u8(msg, sub->period); in bt_mesh_cfg_hb_sub_set() 1389 net_buf_simple_add_u8(msg, pub->period); in bt_mesh_cfg_hb_pub_set()
|
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/src/include/lwip/ |
H A D | dhcp.h | 18 /** period (in seconds) of the application calling dhcp_coarse_tmr() */ 20 /** period (in milliseconds) of the application calling dhcp_coarse_tmr() */ 22 /** period (in milliseconds) of the application calling dhcp_fine_tmr() */ 49 u16_t request_timeout; /* #ticks with period DHCP_FINE_TIMER_SECS for request timeout */ 50 u16_t t1_timeout; /* #ticks with period DHCP_COARSE_TIMER_SECS for renewal time */ 51 u16_t t2_timeout; /* #ticks with period DHCP_COARSE_TIMER_SECS for rebind time */ 57 u32_t offered_t0_lease; /* lease period (in seconds) */ 58 u32_t offered_t1_renew; /* recommended renew time (usually 50% of lease period) */ 59 u32_t offered_t2_rebind; /* recommended rebind time (usually 66% of lease period) */
|
/nrf52832-nimble/rt-thread/components/drivers/include/drivers/ |
H A D | rt_drv_pwm.h | 25 rt_uint32_t period; /* unit:ns 1ns~4.29s:1Ghz~0.23hz */ member 26 rt_uint32_t pulse; /* unit:ns (pulse<=period) */ 45 rt_err_t rt_pwm_set(struct rt_device_pwm *device, int channel, rt_uint32_t period, rt_uint32_t puls…
|
H A D | hwtimer.h | 25 HWTIMER_CTRL_MODE_SET /* Setting the timing mode(oneshot/period) */ 75 rt_int32_t reload; /* reload cycles(using in period mode) */ 76 rt_hwtimer_mode_t mode; /* timing mode(oneshot/period) */
|
/nrf52832-nimble/rt-thread/components/drivers/usb/usbhost/class/ |
H A D | adk.c | 46 * This function will do USB_REQ_GET_PROTOCOL request to set idle period to the usb adk device 49 * @duration the idle period of requesting data. 79 * This function will do USB_REQ_SEND_STRING request to set idle period to the usb adk device 82 * @duration the idle period of requesting data. 113 * This function will do USB_REQ_START request to set idle period to the usb adk device 116 * @duration the idle period of requesting data.
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/host/mesh/include/mesh/ |
H A D | access.h | 272 u8_t period; /**< Publish Period. */ member 273 u8_t period_div:4, /**< Divisor for the Period. */ 277 u32_t period_start; /**< Start of the current period. */ 312 /** Publish Period Timer. Only for stack-internal use. */ 382 * non-period publishing. For periodic publishing the app only needs
|
H A D | cfg_cli.h | 80 u8_t period; member 150 u8_t period; member 165 u8_t period; member
|
H A D | cfg_srv.h | 38 u8_t period; member
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/controller/include/controller/ |
H A D | ble_ll_sched.h | 89 * introduce the concept of a "period". A period is a collection of slots. Each 90 * slot is 1.25 msecs in length. The number of slots in a period is determined 94 * will be scheduled at period boundaries. Any scanning/initiating/advertising
|
/nrf52832-nimble/rt-thread/components/drivers/misc/ |
H A D | rt_drv_pwm.c | 161 rt_err_t rt_pwm_set(struct rt_device_pwm *device, int channel, rt_uint32_t period, rt_uint32_t puls… in rt_pwm_set() argument 172 configuration.period = period; in rt_pwm_set()
|
/nrf52832-nimble/nordic/nrfx/drivers/include/ |
H A D | nrfx_qdec.h | 52 nrf_qdec_reportper_t reportper; /**< Report period in samples. */ 53 nrf_qdec_sampleper_t sampleper; /**< Sampling period in microseconds. */
|
H A D | nrfx_pwm.h | 140 at the end of the current PWM period. 302 * The playback is stopped at the end of the current PWM period. 309 * the length of the PMW period, this might take a significant amount of
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/core/ipv4/ |
H A D | dhcp.c | 445 * A DHCP server is expected to respond within a short period of time. 488 /* back-off period has passed, or server selection timed out */ in dhcp_timeout() 525 * The renewal period has timed out. 553 * The rebind period has timed out. 608 /* renewal period given? */ in dhcp_handle_ack() 610 /* remember given renewal period */ in dhcp_handle_ack() 617 /* renewal period given? */ in dhcp_handle_ack() 619 /* remember given rebind period */ in dhcp_handle_ack() 1031 /* set renewal period timer */ in dhcp_bind() 1046 /* set renewal period timer */ in dhcp_bind() [all …]
|
/nrf52832-nimble/rt-thread/libcpu/arm/AT91SAM7S/ |
H A D | AT91SAM7S.h | 57 #define AT91C_PITC_PIVR (AT91_REG(0xFFFFFD38)) /* PITC Period Interval Value Register */ 58 #define AT91C_PITC_PISR (AT91_REG(0xFFFFFD34)) /* PITC Period Interval Status Register */ 59 #define AT91C_PITC_PIIR (AT91_REG(0xFFFFFD3C)) /* PITC Period Interval Image Register */ 60 #define AT91C_PITC_PIMR (AT91_REG(0xFFFFFD30)) /* PITC Period Interval Mode Register */
|
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/src/core/ |
H A D | dhcp.c | 365 * A DHCP server is expected to respond within a short period of time. 406 /* back-off period has passed, or server selection timed out */ in dhcp_timeout() 460 * The renewal period has timed out. 482 * The rebind period has timed out. 527 /* renewal period given? */ in dhcp_handle_ack() 529 /* remember given renewal period */ in dhcp_handle_ack() 536 /* renewal period given? */ in dhcp_handle_ack() 538 /* remember given rebind period */ in dhcp_handle_ack() 939 /* set renewal period timer */ in dhcp_bind() 951 /* set renewal period timer */ in dhcp_bind()
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/controller/ |
H A D | syscfg.yml | 160 period boundaries. See comments in ble_ll_sched.h for more details. 172 The number of usecs per period.
|