Home
last modified time | relevance | path

Searched refs:send (Results 1 – 25 of 567) sorted by relevance

12345678910>>...23

/Zephyr-latest/samples/drivers/mbox_data/
DREADME.rst75 Client send (on channel 3) value: 0
77 Client send (on channel 3) value: 2
79 Client send (on channel 3) value: 4
82 Client send (on channel 3) value: 96
84 Client send (on channel 3) value: 98
94 Server send (on channel 2) value: 1
96 Server send (on channel 2) value: 3
99 Server send (on channel 2) value: 95
101 Server send (on channel 2) value: 97
103 Server send (on channel 2) value: 99
/Zephyr-latest/samples/drivers/lora/send/
DREADME.rst1 .. zephyr:code-sample:: lora-send
2 :name: LoRa send
11 the encoding settings and send data over the radio.
24 :zephyr-app: samples/drivers/lora/send
/Zephyr-latest/samples/boards/nordic/nrf53_sync_rtc/
DREADME.rst48 [00:00:00.306,915] <inf> main: IPC send at 10056 ticks
49 [00:00:00.356,903] <inf> main: IPC send at 11695 ticks
50 [00:00:00.406,921] <inf> main: IPC send at 13334 ticks
51 [00:00:00.456,939] <inf> main: IPC send at 14973 ticks
52 [00:00:00.506,958] <inf> main: IPC send at 16612 ticks
53 [00:00:00.556,976] <inf> main: IPC send at 18251 ticks
54 [00:00:00.606,994] <inf> main: IPC send at 19890 ticks
55 [00:00:00.657,012] <inf> main: IPC send at 21529 ticks
56 [00:00:00.707,031] <inf> main: IPC send at 23168 ticks
57 [00:00:00.757,049] <inf> main: IPC send at 24807 ticks
/Zephyr-latest/tests/subsys/ipc/ipc_service/src/
Dbackend.c27 static int send(const struct device *instance, void *token, in send() function
66 .send = send,
/Zephyr-latest/subsys/ipc/ipc_service/backends/
Dipc_icmsg.c37 static int send(const struct device *instance, void *token, in send() function
49 .send = send,
/Zephyr-latest/subsys/bluetooth/mesh/
Dproxy_msg.c171 return role->cb.send(conn, msg->data, msg->len, end, user_data); in bt_mesh_proxy_msg_send()
175 err = role->cb.send(conn, msg->data, mtu, NULL, NULL); in bt_mesh_proxy_msg_send()
185 err = role->cb.send(conn, msg->data, msg->len, end, user_data); in bt_mesh_proxy_msg_send()
194 err = role->cb.send(conn, msg->data, mtu, NULL, NULL); in bt_mesh_proxy_msg_send()
299 proxy_send_cb_t send, in bt_mesh_proxy_role_setup() argument
312 role->cb.send = send; in bt_mesh_proxy_role_setup()
Dproxy_msg.h44 proxy_send_cb_t send; member
59 proxy_send_cb_t send,
/Zephyr-latest/doc/connectivity/bluetooth/shell/host/
Diso.rst17 send :Send to ISO Channel [count]
53 uart:~$ iso send
54 send: 40 bytes of data
Dl2cap.rst5 register a LE PSM, connect to it from another device and send 3 packets of 14 octets each.
16 On device B, connect to the registered LE PSM and send data:
25 uart:~$ l2cap send 3 14
/Zephyr-latest/samples/net/sockets/dumb_http_server_mt/
DKconfig18 If set, then send 100KB file to peer. Default is to send
/Zephyr-latest/doc/connectivity/networking/api/
Dwebsocket.rst48 The Websocket socket can then be used to send or receive data, and the
51 BSD socket API functions can be used to send and receive application data.
59 ret = send(ws_sock, buf_to_send, buf_len, 0);
62 is supported. In order to send BINARY data, the :c:func:`websocket_send_msg()`
/Zephyr-latest/samples/bluetooth/broadcaster/
DREADME.rst5 Periodically send out advertising packets with a manufacturer data element.
11 The application will periodically send out advertising packets with
/Zephyr-latest/samples/net/sockets/packet/
DKconfig12 By default the application will send a packet every 5 seconds.
29 Where to send the Ethernet frames.
/Zephyr-latest/doc/kernel/services/data_passing/
Dpipes.rst6 A :dfn:`pipe` is a kernel object that allows a thread to send a byte stream
32 satisfied, then the operation will either fail immediately or attempt to send
33 as many bytes as possible and then pend in the hope that the send can be
58 allows it to send/receive data to/from one provided it does not attempt
114 /* Craft message to send in the pipe */
118 /* send data to the consumers */
168 Use a pipe to send streams of data between threads.
172 it is often preferable to send pointers to large data items to avoid
220 Use a pipe to send streams of data between threads.
224 is often preferable to send pointers to large data items to avoid copying
/Zephyr-latest/drivers/ethernet/
Deth_native_posix.c53 uint8_t send[NET_ETH_MTU + ETH_HDR_LEN]; member
139 bool send) in update_gptp() argument
152 hdr = check_gptp_msg(iface, pkt, send); in update_gptp()
157 if (send) { in update_gptp()
167 #define update_gptp(iface, pkt, send) argument
176 ret = net_pkt_read(pkt, ctx->send, count); in eth_send()
185 ret = nsi_host_write(ctx->dev_fd, ctx->send, count); in eth_send()
466 .send = eth_send,
/Zephyr-latest/drivers/ipm/
Dipm_cavs_host.c44 static int send(const struct device *dev, int wait, uint32_t id, in send() function
201 .send = send,
/Zephyr-latest/samples/net/sockets/txtime/
DREADME.rst11 SO_TXTIME socket option and expects the Ethernet driver to send
26 When the application is run, it starts to send UDP packets. You can start
28 send the data back to this application. Optionally you can set
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/nordic/lll/
Dlll_prof.c26 static int send(struct node_rx_pdu *rx);
169 (void)send(NULL); in lll_prof_send()
192 err = send(rx); in lll_prof_reserve_send()
201 static int send(struct node_rx_pdu *rx) in send() function
/Zephyr-latest/include/zephyr/net/hdlc_rcp_if/
Dhdlc_rcp_if.h57 int (*send)(const uint8_t *frame, uint16_t length); member
/Zephyr-latest/include/zephyr/drivers/
Dmbox.h223 mbox_send_t send; member
273 if (api->send == NULL) { in z_impl_mbox_send()
277 return api->send(dev, channel_id, msg); in z_impl_mbox_send()
/Zephyr-latest/include/zephyr/net/
Ddummy.h41 int (*send)(const struct device *dev, struct net_pkt *pkt); member
/Zephyr-latest/drivers/usb/device/
Dusb_dc_native_posix_adapt.c103 if (send(connfd, &iface, sizeof(iface), 0) != in send_interfaces()
154 if (send(connfd, &dev, sizeof(dev), 0) != sizeof(dev)) { in send_device()
172 if (send(connfd, &header, sizeof(header), 0) != sizeof(header)) { in handle_device_list()
180 if (send(connfd, &ndev, sizeof(ndev), 0) != sizeof(ndev)) { in handle_device_list()
248 if (send(connfd, &header, sizeof(header), 0) != sizeof(header)) { in handle_import()
431 return send(connfd_global, data, len, 0); in usbip_send()
/Zephyr-latest/subsys/debug/gdbstub/
DKconfig32 int "GDB backend send/receive buffer size (in bytes)"
35 This specifies the size (in bytes) of the send/receive buffer
/Zephyr-latest/samples/drivers/i2s/output/
DREADME.rst10 This sample demonstrates how to use an I2S driver to send an output stream of
14 The sample will send a short burst of audio data, consisting of a sine wave.
/Zephyr-latest/drivers/spi/
Dspi_sifive.c134 bool send = false; in spi_sifive_xfer() local
141 send = true; in spi_sifive_xfer()
144 send = true; in spi_sifive_xfer()
148 if (send && spi_sifive_send_available(dev)) { in spi_sifive_xfer()

12345678910>>...23