Home
last modified time | relevance | path

Searched full:transmit (Results 1 – 25 of 157) sorted by relevance

1234567

/nrf52832-nimble/packages/NimBLE-latest/nimble/host/mesh/include/mesh/
H A Daccess.h203 * @return Mesh transmit value that can be used e.g. for the default
210 * @brief Decode transmit count from a transmit value.
212 * @param transmit Encoded transmit count & interval value.
216 #define BT_MESH_TRANSMIT_COUNT(transmit) (((transmit) & (u8_t)BIT_MASK(3))) argument
220 * @brief Decode transmit interval from a transmit value.
222 * @param transmit Encoded transmit count & interval value.
226 #define BT_MESH_TRANSMIT_INT(transmit) ((((transmit) >> 3) + 1) * 10) argument
236 * @return Mesh transmit value that can be used e.g. for the default
246 * @param transmit Encoded Publish Retransmit count & interval value.
250 #define BT_MESH_PUB_TRANSMIT_COUNT(transmit) BT_MESH_TRANSMIT_COUNT(transmit) argument
[all …]
H A Dcfg_cli.h56 u8_t *transmit);
59 u8_t new_transmit, u8_t *status, u8_t *transmit);
81 u8_t transmit; member
/nrf52832-nimble/rt-thread/components/net/freemodbus/port/
H A Dportserial.c32 /* software simulation serial transmit IRQ handler thread stack */
34 /* software simulation serial transmit IRQ handler thread */
42 /* serial transmit event */
56 * set 485 mode receive and transmit control IO in xMBPortSerialInit()
137 /* switch 485 to transmit mode */ in vMBPortSerialEnable()
146 /* start serial transmit */ in vMBPortSerialEnable()
151 /* stop serial transmit */ in vMBPortSerialEnable()
176 * Create an interrupt handler for the transmit buffer empty interrupt
199 * Software simulation serial transmit IRQ handler.
207 /* waiting for serial transmit start */ in serial_soft_trans_irq()
H A Dportserial_m.c33 /* software simulation serial transmit IRQ handler thread stack */
35 /* software simulation serial transmit IRQ handler thread */
43 /* serial transmit event */
57 * set 485 mode receive and transmit control IO in xMBMasterPortSerialInit()
139 /* switch 485 to transmit mode */ in vMBMasterPortSerialEnable()
148 /* start serial transmit */ in vMBMasterPortSerialEnable()
153 /* stop serial transmit */ in vMBMasterPortSerialEnable()
178 * Create an interrupt handler for the transmit buffer empty interrupt
201 * Software simulation serial transmit IRQ handler.
209 /* waiting for serial transmit start */ in serial_soft_trans_irq()
/nrf52832-nimble/packages/NimBLE-latest/nimble/controller/src/
H A Dble_ll_sched.c353 * time is more than a transmit window offset interval (1.25 msecs). The in ble_ll_sched_master_new()
354 * master has to tell the slave how many transmit window offsets there are 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()
357 * transmission start has to occur within the transmit window. The transmit in ble_ll_sched_master_new()
360 * use a transmit window of 2. We do this because we dont quite know the in ble_ll_sched_master_new()
362 * could miss the transmit window. A final note: the actual transmission in ble_ll_sched_master_new()
365 * offset. The reason we dont do this is we want to insure we transmit in ble_ll_sched_master_new()
368 * us to send a transmit window offset of 1. Since we are actually in ble_ll_sched_master_new()
371 * transmit window to do so. Transmitting before is bad, since the slave in ble_ll_sched_master_new()
373 * a transmit window of 1 as opposed to 2, but for now we dont care. in ble_ll_sched_master_new()
[all …]
H A Dble_ll_conn.c96 * event, what should we do? Transmit anyway? Not transmit? For now, we just
97 * transmit.
359 * -> Disable the PHY, which will prevent any transmit/receive interrupts.
1036 * @return int 0: success; otherwise failure to transmit
1104 * the transmit queue. in ble_ll_conn_tx_data_pdu()
1114 * the connection transmit queue in ble_ll_conn_tx_data_pdu()
1399 /* Set transmit end callback */ in ble_ll_conn_tx_data_pdu()
1403 /* Log transmit on connection state */ in ble_ll_conn_tx_data_pdu()
1705 * XXX: for now, we need twice the transmit window as our calculations in ble_ll_conn_master_common_init()
1706 * for the transmit window offset could be off. in ble_ll_conn_master_common_init()
[all …]
/nrf52832-nimble/packages/NimBLE-latest/nimble/controller/include/controller/
H A Dble_phy.h100 /* Set transmit start time */
106 /* Set the transmit end callback and argument */
112 /* Place the PHY into transmit mode */
124 /* Set the transmit power */
130 /* Get the transmit power */
H A Dble_ll.h136 /* Packet transmit queue */
391 * winsize: The transmit window size = winsize * 1.25 msecs
392 * winoffset: The transmit window offset = winoffset * 1.25 msecs
419 * 'payload_len' will take to transmit on a PHY 'phy_mode'. */
436 * Called to put a packet on the Link Layer transmit packet queue.
438 * @param txpdu Pointer to transmit packet
H A Dble_ll_sched.h43 * NOTE: The advertising PDU transmit time is NOT included here since we know
62 * This is the number of slots needed to transmit and receive a maximum
/nrf52832-nimble/rt-thread/libcpu/arm/AT91SAM7S/
H A Dserial.c44 REG32 US_TPR; // Transmit Pointer Register
45 REG32 US_TCR; // Transmit Counter Register
48 REG32 US_TNPR; // Transmit Next Pointer Register
49 REG32 US_TNCR; // Transmit Next Counter Register
310 /* Transmit Character */ in rt_serial_write()
322 /* Transmit Character */ in rt_serial_write()
/nrf52832-nimble/packages/NimBLE-latest/nimble/drivers/native/src/
H A Dble_phy.c270 /* Receive packet end (we dont enable this for transmit) */ in ble_phy_isr()
371 /* Set transmit end callback and arg */ in ble_phy_set_txend_cb()
399 * This function acts a bit differently than transmit. If we are late getting
452 * Set the transmit output power (in dBm).
485 * Get the rounded transmit output power (in dBm).
508 * Get the transmit power.
510 * @return int The current PHY transmit power, in dBm
/nrf52832-nimble/packages/NimBLE-latest/nimble/drivers/nrf51/src/
H A Dble_phy.c41 * XXX: Maximum possible transmit time is 1 msec for a 60ppm crystal
97 /* Global transmit/receive buffer */
406 * from the transmit end. We add additional time to make sure the in ble_phy_wfr_enable()
407 * address event comes before the compare. Note that transmit end in ble_phy_wfr_enable()
508 * Called from interrupt context when the transmit ends
546 /* Call transmit end callback */ in ble_phy_tx_end_isr()
558 * timer 0 contains the transmit start time in ble_phy_tx_end_isr()
795 /* Receive packet end (we dont enable this for transmit) */ in ble_phy_isr()
1015 /* Set transmit end callback and arg */ in ble_phy_set_txend_cb()
1066 * This function acts a bit differently than transmit. If we are late getting
[all …]
/nrf52832-nimble/packages/NimBLE-latest/nimble/host/mesh/src/
H A Dcfg_cli.c111 u8_t *transmit; member
131 *param->transmit = net_buf_simple_pull_u8(buf); in relay_status()
334 param->pub->transmit = net_buf_simple_pull_u8(buf); in mod_pub_status()
671 u8_t *transmit) in bt_mesh_cfg_relay_get() argument
682 .transmit = transmit, in bt_mesh_cfg_relay_get()
707 u8_t new_transmit, u8_t *status, u8_t *transmit) in bt_mesh_cfg_relay_set() argument
718 .transmit = transmit, in bt_mesh_cfg_relay_set()
1236 net_buf_simple_add_u8(msg, pub->transmit); in mod_pub_set()
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/lwip/apps/
H A Dsntp_opts.h95 * - >= 2 to check returned Originate Timestamp against Transmit Timestamp
97 * - >= 3 @todo: discard reply if any of the VN, Stratum, or Transmit Timestamp
110 * the originate, receive, transmit and destination timestamps, as per RFC.
/nrf52832-nimble/nordic/nrfx/hal/
H A Dnrf_twim.h55 … NRF_TWIM_TASK_STARTTX = offsetof(NRF_TWIM_Type, TASKS_STARTTX), ///< Start TWI transmit sequence.
72 …NRF_TWIM_EVENT_TXSTARTED = offsetof(NRF_TWIM_Type, EVENTS_TXSTARTED), ///< Transmit sequence start…
74 … offsetof(NRF_TWIM_Type, EVENTS_LASTTX) ///< Byte boundary, starting to transmit the last byte.
338 * @brief Function for setting the transmit buffer.
342 * @param[in] length Maximum number of data bytes to transmit.
H A Dnrf_i2s.h385 * @param[in] p_tx_buffer Pointer to the transmit buffer.
415 * @brief Function for setting the pointer to the transmit buffer.
421 * @param[in] p_buffer Pointer to the transmit buffer.
427 * @brief Function for getting the pointer to the transmit buffer.
431 * @return Pointer to the transmit buffer.
H A Dnrf_twis.h72 …NRF_TWIS_EVENT_TXSTARTED = offsetof(NRF_TWIS_Type, EVENTS_TXSTARTED), /**< Transmit sequence start…
387 * @brief Function for setting the transmit buffer.
391 * @param length Maximum number of data bytes to transmit.
401 * This function sets transmit buffer and then sets NRF_TWIS_TASK_PREPARETX task.
404 * @param length Maximum number of data bytes to transmit.
/nrf52832-nimble/packages/NimBLE-latest/nimble/controller/
H A Dsyscfg.yml77 description: 'Transmit power level.'
121 description: 'The maximum supported transmit PDU size'
125 Used to set the initial maximum transmit PDU size in a
/nrf52832-nimble/packages/NimBLE-latest/nimble/drivers/nrf52/src/
H A Dble_phy.c58 * XXX: Maximum possible transmit time is 1 msec for a 60ppm crystal
128 /* Global transmit/receive buffer */
829 * Called from interrupt context when the transmit ends
874 /* Call transmit end callback */ in ble_phy_tx_end_isr()
1239 /* Receive packet end (we dont enable this for transmit) */ in ble_phy_isr()
1556 /* Set transmit end callback and arg */ in ble_phy_set_txend_cb()
1604 * This function acts a bit differently than transmit. If we are late getting
1730 /* Enable shortcuts for transmit start/end. */ in ble_phy_tx()
1761 * Set the transmit output power (in dBm).
1795 * Get the rounded transmit output power (in dBm).
[all …]
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/include/lwip/apps/
H A Dsntp_opts.h97 * - >= 2 to check returned Originate Timestamp against Transmit Timestamp
99 * - >= 3 @todo: discard reply if any of the LI, Stratum, or Transmit Timestamp
/nrf52832-nimble/rt-thread/components/net/uip/uip/
H A Duip-split.c88 /* Transmit the first packet. */ in uip_split_output()
127 /* Transmit the second packet. */ in uip_split_output()
/nrf52832-nimble/rt-thread/components/drivers/audio/
H A Daudio.c51 if (audio->ops->transmit != RT_NULL) in _audio_send_replay_frame()
53 AUDIO_DBG("audio transmit...\n"); in _audio_send_replay_frame()
54 … if (audio->ops->transmit(audio, frame.data_ptr, RT_NULL, frame.data_size) != frame.data_size) in _audio_send_replay_frame()
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/include/netif/ppp/
H A Dppp.h398 u8_t ccp_transmit_method; /* Method chosen on transmit path */
538 * If set, we will not transmit LCP packets to initiate a connection until a valid
547 * the transmit direction.
555 * If set, enable Address/Control compression in both the receive and the transmit
565 * be escaped for both the transmit and the receive direction.
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/netif/ppp/
H A Dppp.h402 u8_t ccp_transmit_method; /* Method chosen on transmit path */
542 * If set, we will not transmit LCP packets to initiate a connection until a valid
551 * the transmit direction.
559 * If set, enable Address/Control compression in both the receive and the transmit
569 * be escaped for both the transmit and the receive direction.
/nrf52832-nimble/packages/NimBLE-latest/nimble/host/services/tps/
H A Dsyscfg.yml21 Sysinit stage for the transmit power BLE service.

1234567