/Zephyr-Core-3.6.0/subsys/bluetooth/mesh/ |
D | msg.h | 7 /** @brief Send a model message. 12 * @param model Model to send the message on. 13 * @param ctx Message context, or NULL to send with the configured publish parameters. 14 * @param buf Message to send. 34 /** @brief Send an acknowledged model message. 42 * @param model Model to send the message on. 43 * @param ctx Message context, or NULL to send with the configured publish parameters. 44 * @param buf Message to send.
|
/Zephyr-Core-3.6.0/tests/bsim/bluetooth/mesh/tests_scripts/beacon/ |
D | beacon_interval.sh | 11 # tx node is able to adapt observed beacon interval and able to send at least one 12 # SNB in 600s. And veify tx node doesnn't send SNB faster than 10s. 14 # 1- rx node waits for the tx node to send the first SNB, 17 # sending SNB # in 20ms until it adapts again and starts to send in 10s. 18 # 2- rx node sends SNBs with 4s period for 600s and verifies that tx node doesn't send any
|
/Zephyr-Core-3.6.0/samples/drivers/mbox_data/ |
D | sample.yaml | 22 - "Client send \\(on channel 3\\) value: 2" 24 - "Client send \\(on channel 3\\) value: 4" 26 - "Client send \\(on channel 3\\) value: 42" 28 - "Client send \\(on channel 3\\) value: 98"
|
D | README.rst | 75 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-Core-3.6.0/tests/boards/intel_adsp/smoke/src/ |
D | hostipc.c | 40 /* Just send a message and wait for it to complete */ in ZTEST() 41 printk("Simple message send...\n"); in ZTEST() 44 zassert_true(!ret, "send failed"); in ZTEST() 56 zassert_true(!ret, "send failed"); in ZTEST() 69 zassert_true(!ret, "send failed"); in ZTEST() 80 zassert_true(!ret, "send failed"); in ZTEST() 91 printk("Synchronous message send...\n"); in ZTEST() 95 zassert_true(!ret, "send failed"); in ZTEST()
|
/Zephyr-Core-3.6.0/samples/drivers/lora/send/ |
D | sample.yaml | 5 description: Demonstration of LoRa Send functionality 6 name: LoRa Send Sample 8 sample.driver.lora.send:
|
D | README.rst | 1 .. zephyr:code-sample:: lora-send 2 :name: LoRa send 11 the encoding settings and send data over the radio. 24 :zephyr-app: zephyr/samples/drivers/lora/send
|
/Zephyr-Core-3.6.0/doc/connectivity/bluetooth/api/shell/ |
D | iso.rst | 17 send :Send to ISO Channel [count] 49 4. Send data: 53 uart:~$ iso send 54 send: 40 bytes of data
|
/Zephyr-Core-3.6.0/samples/net/sockets/dumb_http_server_mt/ |
D | Kconfig | 16 bool "Send large file to peer when queried" 18 If set, then send 100KB file to peer. Default is to send
|
/Zephyr-Core-3.6.0/tests/bsim/bluetooth/mesh/src/ |
D | test_scanner.c | 66 /** Bypassing setting up transmission, and will try to send the raw data that is 110 * First message send message with an ad data type not supported by mesh, and 111 * verify that the receiver is disregarding message. Then send the same message 122 /* Send message with invalid ad type. */ in test_tx_invalid_ad_type() 129 /* Send message with valid ad type to verify message. */ in test_tx_invalid_ad_type() 138 * Send messages with wrong packet length, and verify that the receiver is 139 * disregarding message. Then send the same message with correct packet length 150 /* Send message with to long data length. */ in test_tx_wrong_packet_length() 153 /* Send message with to short data length. */ in test_tx_wrong_packet_length() 156 /* Send message with invalid ad type and wrong data length. */ in test_tx_wrong_packet_length() [all …]
|
D | test_friendship.c | 148 /** As a friend, send messages to the LPN. 166 /* Send unsegmented message from friend to LPN: */ in test_friend_msg() 170 "Unseg send failed"); in test_friend_msg() 175 /* Send segmented message */ in test_friend_msg() 178 "Unseg send failed"); in test_friend_msg() 183 /* Send two unsegmented messages before the next poll. in test_friend_msg() 192 "Unseg send failed"); in test_friend_msg() 195 "Unseg send failed"); in test_friend_msg() 300 * device to finish, then send group and virtual addr messages to the LPN. 301 * Let the LPN add another group message, then send to that as well. [all …]
|
/Zephyr-Core-3.6.0/samples/boards/nrf/nrf53_sync_rtc/ |
D | README.rst | 48 [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-Core-3.6.0/subsys/net/lib/tftp/ |
D | tftp_client.c | 51 * Send Data message to the TFTP Server and receive ACK message from it. 63 LOG_DBG("Client send data: block no %u, size %u", block_no, data_size + TFTP_HEADER_SIZE); in send_data() 71 /* Prepare DATA packet, send it out then poll for ACK response */ in send_data() 76 ret = send(sock, client->tftp_buf, data_size + TFTP_HEADER_SIZE, 0); in send_data() 78 LOG_ERR("send() error: %d", -errno); in send_data() 93 break; /* no response, re-send data */ in send_data() 103 break; /* wrong response, re-send data */ in send_data() 132 break; /* wrong response, re-send data */ in send_data() 143 * Send an Error Message to the TFTP Server. 168 /* Send Error to server. */ in send_err() [all …]
|
/Zephyr-Core-3.6.0/doc/connectivity/bluetooth/ |
D | rfcomm-pics.rst | 37 TSPC_RFCOMM_1_9 True Respond to and send MSC Command 40 TSPC_RFCOMM_1_12 False Send Test Command 43 TSPC_RFCOMM_1_15 False Send RLS Command 45 TSPC_RFCOMM_1_17 True (*) Send PN Command 46 TSPC_RFCOMM_1_18 True (*) Send Non-Supported Command (NSC) 49 TSPC_RFCOMM_1_20 False Send RPN Command
|
/Zephyr-Core-3.6.0/tests/net/tcp/src/ |
D | main.c | 195 .send = tester_send, 581 * send SYN, 583 * send ACK, 584 * send Data, 586 * send FIN, 588 * send ACK. 623 zassert_true(false, "Failed to send data to peer"); in ZTEST() 643 * send SYN, 645 * send ACK, 646 * send Data, [all …]
|
/Zephyr-Core-3.6.0/include/zephyr/bluetooth/mesh/ |
D | statistic.h | 42 /** Counter of frames that were initiated to send over advertiser bearer locally. */ 44 /** Counter of frames that succeeded to send over advertiser bearer locally. */ 46 /** Counter of frames that were initiated to send over friend bearer. */ 48 /** Counter of frames that succeeded to send over friend bearer. */
|
/Zephyr-Core-3.6.0/samples/drivers/i2s/output/ |
D | README.rst | 5 Send I2S output stream 10 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-Core-3.6.0/doc/kernel/services/data_passing/ |
D | pipes.rst | 6 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
|
D | mailboxes.rst | 8 A mailbox allows threads to send and receive messages of any size 23 * A **send queue** of messages that have been sent but not yet received. 79 is sent, or send it to any thread by specifying :c:macro:`K_ANY`. 185 Finally, the sending thread calls a mailbox send API to initiate the 188 to the mailbox's send queue. 190 Any number of messages may exist simultaneously on a send queue. 191 The messages in the send queue are sorted according to the priority 195 For a synchronous send operation, the operation normally completes when a 198 sending thread is reached, the message is removed from the mailbox's send queue 199 and the send operation fails. When a send operation completes successfully [all …]
|
/Zephyr-Core-3.6.0/tests/net/lib/dns_addremove/src/ |
D | main.c | 111 DBG("No data to send!\n"); in sender_iface() 122 .send = sender_iface, 219 k_yield(); /* mandatory so that net_if send func gets to run */ in test_dns_do_not_add_add_callback6() 245 k_yield(); /* mandatory so that net_if send func gets to run */ in test_dns_add_callback6() 265 k_yield(); /* mandatory so that net_if send func gets to run */ in test_dns_remove_callback6() 284 k_yield(); /* mandatory so that net_if send func gets to run */ in test_dns_remove_none_callback6() 308 k_yield(); /* mandatory so that net_if send func gets to run */ in ZTEST() 325 k_yield(); /* mandatory so that net_if send func gets to run */ in ZTEST() 343 k_yield(); /* mandatory so that net_if send func gets to run */ in ZTEST() 367 k_yield(); /* mandatory so that net_if send func gets to run */ in ZTEST() [all …]
|
/Zephyr-Core-3.6.0/tests/net/socket/socketpair/src/ |
D | nonblock.c | 17 res = send(fixture->sv[i], "x", 1, 0); in ZTEST_USER_F() 18 zassert_equal(res, 1, "send() failed: %d", errno); in ZTEST_USER_F() 29 res = send(fixture->sv[i], "x", 1, 0); in ZTEST_USER_F() 30 zassert_equal(res, -1, "expected send to fail"); in ZTEST_USER_F()
|
D | block.c | 50 res = send(ctx.fd, "x", 1, 0); in work_handler() 53 LOG_DBG("%s() failed: %d", ctx.write ? "recv" : "send", errno); in work_handler() 80 res = send(fixture->sv[i], "x", 1, 0); in ZTEST_F() 81 zassert_not_equal(res, -1, "send() failed: %d", errno); in ZTEST_F() 91 res = send(fixture->sv[i], "x", 1, 0); in ZTEST_F() 92 zassert_not_equal(res, -1, "send() failed: %d", errno); in ZTEST_F()
|
/Zephyr-Core-3.6.0/samples/net/sockets/http_client/ |
D | Kconfig | 9 int "Send a sample HTTP query this many times" 12 Send a sample HTTP query this many times before exiting. A value of
|
/Zephyr-Core-3.6.0/samples/subsys/zbus/uart_bridge/ |
D | sample.yaml | 13 - "D: Bridge send start_measurement" 14 - "D: Bridge send sensor_data"
|
/Zephyr-Core-3.6.0/tests/net/pm/src/ |
D | main.c | 90 .send = fake_dev_send, 138 /* Let's send some data, it should go through */ in ZTEST() 141 zassert_true(ret > 0, "Could not send data"); in ZTEST() 159 /* Let's send some data, it should fail relevantly */ in ZTEST() 162 zassert_true(ret < 0, "Could send data"); in ZTEST() 172 /* Let's send some data, it should go through */ in ZTEST() 175 zassert_true(ret > 0, "Could not send data"); in ZTEST()
|