/nrf52832-nimble/packages/NimBLE-latest/apps/blemesh_models_example_2/src/ |
H A D | state_binding.c | 41 light_lightness_srv_user_data.actual = var; in constrain_light_actual_state() 48 if (light_lightness_srv_user_data.actual == 0) { in update_gen_onoff_state() 90 light_lightness_srv_user_data.actual = 0; in state_binding() 96 light_lightness_srv_user_data.actual = in state_binding() 103 light_lightness_srv_user_data.actual = 0; in state_binding() 110 light_lightness_srv_user_data.actual = in state_binding() 113 light_lightness_srv_user_data.actual = in state_binding() 141 light_lightness_srv_user_data.actual = tmp16; in state_binding() 145 case ACTUAL: /* Lightness update as per Light Lightness Actual state */ in state_binding() 169 tmp = ((float) light_lightness_srv_user_data.actual / 65535); in state_binding() [all …]
|
H A D | transition.c | 133 ((float) (state->actual - state->target_actual) / in light_lightnes_actual_tt_values() 349 u32_t actual; in light_lightness_actual_work_handler() local 353 actual = state->actual - state->tt_delta_actual; in light_lightness_actual_work_handler() 355 if (state->actual != actual) { in light_lightness_actual_work_handler() 356 state->actual = actual; in light_lightness_actual_work_handler() 358 state_binding(ACTUAL, IGNORE_TEMP); in light_lightness_actual_work_handler() 366 state->actual = state->target_actual; in light_lightness_actual_work_handler() 368 state_binding(ACTUAL, IGNORE_TEMP); in light_lightness_actual_work_handler()
|
H A D | device_composition.h | 34 ACTUAL, enumerator 107 u16_t actual; member
|
H A D | device_composition.c | 828 net_buf_simple_add_le16(msg, state->actual); in light_lightness_get() 847 u16_t actual; in light_lightness_set_unack() local 852 actual = net_buf_simple_pull_le16(buf); in light_lightness_set_unack() 883 if (actual > 0 && actual < state->light_range_min) { in light_lightness_set_unack() 884 actual = state->light_range_min; in light_lightness_set_unack() 885 } else if (actual > state->light_range_max) { in light_lightness_set_unack() 886 actual = state->light_range_max; in light_lightness_set_unack() 889 state->target_actual = actual; in light_lightness_set_unack() 894 state->actual = actual; in light_lightness_set_unack() 903 net_buf_simple_add_le16(msg, state->actual); in light_lightness_set_unack() [all …]
|
/nrf52832-nimble/rt-thread/components/drivers/include/drivers/ |
H A D | spi.h | 236 * @return the actual length of transmitted. 317 * @return the actual length of transmitted. 328 * @return the actual length of transmitted. 338 * @return the actual length of transmitted.
|
/nrf52832-nimble/rt-thread/components/net/uip/rt-thread/ |
H A D | uip_pbuf.h | 41 /** pointer to the actual data in the buffer */ 73 /** pointer to the actual data in the buffer */
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/controller/src/ |
H A D | ble_ll_sched.c | 351 * earliest time although this may not be possible. When the actual in ble_ll_sched_master_new() 355 * from the earliest possible time to when the actual transmit start will in ble_ll_sched_master_new() 356 * occur. Later in this function you will see the calculation. The actual in ble_ll_sched_master_new() 362 * could miss the transmit window. A final note: the actual transmission in ble_ll_sched_master_new() 581 * earliest time although this may not be possible. When the actual in ble_ll_sched_master_new() 585 * from the earliest possible time to when the actual transmit start will in ble_ll_sched_master_new() 586 * occur. Later in this function you will see the calculation. The actual in ble_ll_sched_master_new() 592 * could miss the transmit window. A final note: the actual transmission in ble_ll_sched_master_new() 1569 * This is the offset from the start of the scheduled item until the actual in ble_ll_sched_init()
|
/nrf52832-nimble/rt-thread/components/vbus/ |
H A D | vbus.h | 24 * @param datap pointer to the actual data 111 * The actual data is following the struct rt_vbus_data. After using it, it
|
/nrf52832-nimble/rt-thread/components/dfs/filesystems/nfs/rpc/ |
H A D | xdr.c | 427 register char *sp = *cpp; /* sp is the actual string pointer */ in xdr_bytes() 442 * now deal with the actual bytes in xdr_bytes() 536 register char *sp = *cpp; /* sp is the actual string pointer */ in xdr_string() 562 * now deal with the actual bytes in xdr_string() 613 register unsigned int c; /* the actual element count */ in xdr_array()
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/include/lwip/ |
H A D | pbuf.h | 146 /** pointer to the actual data in the buffer */ 184 /** pointer to the actual data in the buffer */ 194 /** The actual pbuf */
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/doc/ |
H A D | sys_arch.txt | 37 allows both using pointers or actual OS structures to be used. This way, memory 50 points to (which can be both a pointer or the actual OS structure). 99 points to (which can be both a pointer or the actual OS structure).
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/host/mesh/include/mesh/ |
H A D | access.h | 214 * @return Transmission count (actual transmissions is N + 1). 248 * @return Retransmission count (actual transmissions is N + 1). 364 * @param msg Access Layer payload (the actual message to be sent).
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/controller/include/controller/ |
H A D | ble_ll_sched.h | 56 * This is the offset from the start of the scheduled item until the actual 63 * size PDU, including an IFS time before each. The actual time is
|
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/src/include/lwip/ |
H A D | pbuf.h | 83 /** pointer to the actual data in the buffer */ 118 /** The actual pbuf */
|
H A D | sockets.h | 184 * to be used to guide the selection of the actual service parameters 207 * within a network only. The actual use and control of that 210 * If the actual use of these precedence designations is of concern to
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/lwip/ |
H A D | pbuf.h | 190 /** pointer to the actual data in the buffer */ 233 /** pointer to the actual data in the buffer */ 243 /** The actual pbuf */
|
/nrf52832-nimble/rt-thread/components/dfs/filesystems/jffs2/include/linux/ |
H A D | jffs2_fs_i.h | 26 above fragments, if it contains a metadata update but no actual
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/ |
H A D | UPGRADING | 47 to let abc.h only contain the actual application programmer's API 139 the actual application programmer's API
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/drivers/nrf52/src/ |
H A D | ble_phy.c | 610 * less than N+2) so in rare cases actual start time may be 2 ticks earlier in ble_phy_set_start_now() 646 /* Adjust for delay between EVENT_END and actual TX end time */ in ble_phy_wfr_enable() 685 /* Adjust for delay between actual access address RX and EVENT_ADDRESS */ in ble_phy_wfr_enable() 897 /* Adjust for delay between EVENT_END and actual TX end time */ in ble_phy_tx_end_isr() 929 * For Coded PHY mode can be set to either codings since actual coding is in ble_phy_get_cur_rx_phy_mode() 930 * set in packet header. However, here we need actual coding of received in ble_phy_get_cur_rx_phy_mode() 1023 /* Adjust for delay between actual RX end time and EVENT_END */ in ble_phy_rx_end_isr() 1027 /* Adjust for delay between EVENT_READY and actual TX start time */ in ble_phy_rx_end_isr() 1101 * it is possible that actual transmission started before TIMER0 was in ble_phy_rx_start_isr()
|
/nrf52832-nimble/rt-thread/components/dfs/filesystems/jffs2/cyg/compress/src/ |
H A D | inftrees.h | 21 of the bit buffer. val is the actual byte to output in the case
|
H A D | uncompr.c | 22 Upon exit, destLen is the actual size of the compressed buffer.
|
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/doc/ |
H A D | sys_arch.txt | 38 allows both using pointers or actual OS structures to be used. This way, memory 51 points to (which can be both a pointer or the actual OS structure).
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/ |
H A D | UPGRADING | 90 to let abc.h only contain the actual application programmer's API 182 the actual application programmer's API
|
/nrf52832-nimble/rt-thread/components/net/uip/doc/ |
H A D | uip-doc.txt | 294 to note that even though the actual retransmission operation is 328 actual data. The size of the data is obtained through the uIP function 348 for producing the actual data that should be sent, the packet buffer 375 the actual retransmission operation is carried out by the application, 499 register a listening port. The actual application function 1061 to note that even though the actual retransmission operation is
|
/nrf52832-nimble/rt-thread/components/dfs/src/ |
H A D | dfs_file.c | 79 LOG_D("Actual file path: %s", fd->path); in dfs_file_open() 193 * @return the actual read data bytes or 0 on end of file or failed. 292 * @return the actual written data length.
|