/Zephyr-Core-3.5.0/samples/drivers/uart/native_tty/ |
D | README.rst | 56 Device uart2 received: "Hello from device uart, num 9" 58 Device uart2 received: "Hello from device uart, num 8" 60 Device uart2 received: "Hello from device uart, num 7" 62 Device uart2 received: "Hello from device uart, num 6" 64 Device uart2 received: "Hello from device uart, num 5" 66 Device uart2 received: "Hello from device uart, num 4" 68 Device uart2 received: "Hello from device uart, num 3" 70 Device uart2 received: "Hello from device uart, num 2" 72 Device uart2 received: "Hello from device uart, num 1" 74 Device uart2 received: "Hello from device uart, num 0" [all …]
|
/Zephyr-Core-3.5.0/samples/subsys/ipc/rpmsg_service/ |
D | README.rst | 57 Master core received a message: 1 58 Master core received a message: 3 59 Master core received a message: 5 61 Master core received a message: 99 71 Remote core received a message: 0 72 Remote core received a message: 2 73 Remote core received a message: 4 75 Remote core received a message: 98 109 Master core received a message: 1 110 Master core received a message: 3 [all …]
|
/Zephyr-Core-3.5.0/include/zephyr/drivers/ |
D | uart_pipe.h | 5 * received protocol data. 23 /** @brief Received data callback. 25 * This function is called when new data is received on UART. The off parameter 26 * can be used to alter offset at which received data is stored. Typically, 27 * when the complete data is received and a new buffer is provided off should 30 * @param buf Buffer with received data. 31 * @param off Data offset on next received and accumulated data length. 41 * @param buf Initial buffer for received data.
|
/Zephyr-Core-3.5.0/tests/subsys/mgmt/mcumgr/os_mgmt_info/src/ |
D | main.c | 240 /* For a short duration to see if response has been received */ in ZTEST() 241 bool received = smp_dummy_wait_for_data(SMP_RESPONSE_WAIT_TIME); in ZTEST() local 243 zassert_true(received, "Expected to receive data but timed out\n"); in ZTEST() 254 "Expected received data mismatch"); in ZTEST() 266 "Expected received data mismatch"); in ZTEST() 268 "Expected received data mismatch"); in ZTEST() 278 /* For a short duration to see if response has been received */ in ZTEST() 279 received = smp_dummy_wait_for_data(SMP_RESPONSE_WAIT_TIME); in ZTEST() 281 zassert_true(received, "Expected to receive data but timed out\n"); in ZTEST() 292 "Expected received data mismatch"); in ZTEST() [all …]
|
D | limited.c | 46 bool received; in ZTEST() local 73 /* For a short duration to see if response has been received */ in ZTEST() 74 received = smp_dummy_wait_for_data(SMP_RESPONSE_WAIT_TIME); in ZTEST() 76 zassert_true(received, "Expected to receive data but timed out\n"); in ZTEST() 82 /* Process received data by removing header */ in ZTEST() 96 "Expected received data mismatch"); in ZTEST() 107 bool received; in ZTEST() local 139 /* For a short duration to see if response has been received */ in ZTEST() 140 received = smp_dummy_wait_for_data(SMP_RESPONSE_WAIT_TIME); in ZTEST() 142 zassert_true(received, "Expected to receive data but timed out\n"); in ZTEST() [all …]
|
D | build_date.c | 84 bool received; in ZTEST() local 113 /* For a short duration to see if response has been received */ in ZTEST() 114 received = smp_dummy_wait_for_data(SMP_RESPONSE_WAIT_TIME); in ZTEST() 116 zassert_true(received, "Expected to receive data but timed out\n"); in ZTEST() 122 /* Process received data by removing header */ in ZTEST() 137 "Expected received data mismatch"); in ZTEST() 140 DATE_CHECK_RIGHT_CHARS, "Expected received data mismatch"); in ZTEST() 160 bool received; in ZTEST() local 189 /* For a short duration to see if response has been received */ in ZTEST() 190 received = smp_dummy_wait_for_data(SMP_RESPONSE_WAIT_TIME); in ZTEST() [all …]
|
/Zephyr-Core-3.5.0/samples/net/sockets/echo_client/src/ |
D | tcp.c | 58 data->tcp.received = 0U; in send_tcp_data() 73 static int compare_tcp_data(struct data *data, const char *buf, uint32_t received) in compare_tcp_data() argument 75 if (data->tcp.received + received > data->tcp.expecting) { in compare_tcp_data() 76 LOG_ERR("Too much data received: TCP %s", data->proto); in compare_tcp_data() 80 if (memcmp(buf, lorem_ipsum + data->tcp.received, received) != 0) { in compare_tcp_data() 81 LOG_ERR("Invalid data received: TCP %s", data->proto); in compare_tcp_data() 174 int ret, received; in process_tcp_proto() local 178 received = recv(data->tcp.sock, buf, sizeof(buf), MSG_DONTWAIT); in process_tcp_proto() 181 if (received == 0) { in process_tcp_proto() 184 } else if (received < 0) { in process_tcp_proto() [all …]
|
D | udp.c | 153 static int compare_udp_data(struct data *data, const char *buf, uint32_t received) in compare_udp_data() argument 155 if (received != data->udp.expecting) { in compare_udp_data() 156 LOG_ERR("Invalid amount of data received: UDP %s", data->proto); in compare_udp_data() 160 if (memcmp(buf, lorem_ipsum, received) != 0) { in compare_udp_data() 161 LOG_ERR("Invalid data received: UDP %s", data->proto); in compare_udp_data() 174 LOG_ERR("UDP %s: Data packet not received", data->proto); in wait_reply() 241 int ret, received; in process_udp_proto() local 243 received = recv(data->udp.sock, recv_buf, sizeof(recv_buf), in process_udp_proto() 246 if (received == 0) { in process_udp_proto() 249 if (received < 0) { in process_udp_proto() [all …]
|
/Zephyr-Core-3.5.0/subsys/net/l2/ethernet/gptp/ |
D | gptp_state.h | 187 /** Pointer to the received Path Delay Response. */ 190 /** Pointer to the received Path Delay Follow Up. */ 196 /** Path Delay Response messages received. */ 199 /** Path Delay Follow Up messages received. */ 237 /** Pointer to the received Sync message. */ 240 /** Pointer to the received Follow Up message. */ 246 /** A Sync Message has been received. */ 249 /** A Follow Up Message has been received. */ 252 /** A Follow Up Message has been received. */ 258 /** Pointer to the received MDSyncSend structure. */ [all …]
|
/Zephyr-Core-3.5.0/tests/bsim/bluetooth/mesh/tests_scripts/op_agg/ |
D | full_status_msg_list.sh | 8 # access payload message and that the status item messages are received in the correct order. 20 # 5. The server keeps track of the number of received messages and pass when X messages have been 21 # received. 22 # 6. The client keeps track of the number of received status messages. When X messages have been 23 # received, the client pass if the sequence of received status messages corresponds to the order
|
/Zephyr-Core-3.5.0/drivers/ieee802154/ |
D | ieee802154_nrf5.h | 17 uint8_t *psdu; /* Pointer to a received frame. */ 19 uint8_t lqi; /* Last received frame LQI value. */ 20 int8_t rssi; /* Last received frame RSSI value. */ 21 bool ack_fpb; /* FPB value in ACK sent for the received frame. */ 40 /* Buffers for passing received frame pointers and data to the 45 /* Frame pending bit value in ACK sent for the last received frame. */ 67 /* A buffer for the received ACK frame. psdu pointer be NULL if no 68 * ACK was requested/received.
|
/Zephyr-Core-3.5.0/tests/subsys/mgmt/mcumgr/smp_version/src/ |
D | main.c | 108 bool received; in ZTEST() local 141 /* For a short duration to see if response has been received */ in ZTEST() 142 received = smp_dummy_wait_for_data(SMP_RESPONSE_WAIT_TIME); in ZTEST() 143 zassert_true(received, "Expected to receive data but timed out"); in ZTEST() 149 /* Check that the received response matches the expected response */ in ZTEST() 150 zassert_equal(sizeof(response_old), nb->len, "Expected received data length mismatch"); in ZTEST() 151 zassert_mem_equal(response_old, nb->data, nb->len, "Expected received data mismatch"); in ZTEST() 153 /* Process received data by removing header */ in ZTEST() 195 bool received; in ZTEST() local 228 /* For a short duration to see if response has been received */ in ZTEST() [all …]
|
/Zephyr-Core-3.5.0/include/zephyr/bluetooth/mesh/ |
D | heartbeat.h | 58 /** Destination address to received Heartbeats on. */ 60 /** The number of received Heartbeat messages so far. */ 63 * Minimum hops in received messages, ie the shortest registered 65 * Heartbeat received from an immediate neighbor has hop 70 * Maximum hops in received messages, ie the longest registered 72 * Heartbeat received from an immediate neighbor has hop 82 * Gets called on every received Heartbeat that matches the current 86 * @param hops The number of hops the Heartbeat was received 100 * of the received heartbeat messages.
|
D | statistic.h | 29 /** All received frames passed basic validation and decryption. */ 30 /** Received frames over advertiser. */ 32 /** Received frames over loopback. */ 34 /** Received frames over proxy. */ 36 /** Received over unknown interface. */
|
/Zephyr-Core-3.5.0/samples/drivers/ipm/ipm_esp32/ |
D | README.rst | 43 PRO_CPU received a message from APP_CPU : APP_CPU: This is a response 45 PRO_CPU received a message from APP_CPU : APP_CPU: This is a response 47 PRO_CPU received a message from APP_CPU : APP_CPU: This is a response 49 PRO_CPU received a message from APP_CPU : APP_CPU: This is a response 51 PRO_CPU received a message from APP_CPU : APP_CPU: This is a response 53 PRO_CPU received a message from APP_CPU : APP_CPU: This is a response 55 PRO_CPU received a message from APP_CPU : APP_CPU: This is a response
|
/Zephyr-Core-3.5.0/tests/subsys/mgmt/mcumgr/cb_notifications/src/ |
D | main.c | 89 /* For SMP systems, it is possible that a dummy response is fully received and processed in wait_for_sync() 105 bool received; in ZTEST() local 126 /* For a short duration to see if response has been received */ in ZTEST() 127 received = smp_dummy_wait_for_data(SMP_RESPONSE_WAIT_TIME); in ZTEST() 129 zassert_true(received, "Expected to receive data but timed out\n"); in ZTEST() 137 zassert_false(cmd_recv_got, "Did not expect received command callback\n"); in ZTEST() 151 bool received; in ZTEST() local 172 /* For a short duration to see if response has been received */ in ZTEST() 173 received = smp_dummy_wait_for_data(SMP_RESPONSE_WAIT_TIME); in ZTEST() 175 zassert_true(received, "Expected to receive data but timed out\n"); in ZTEST() [all …]
|
/Zephyr-Core-3.5.0/samples/drivers/can/counter/ |
D | README.rst | 12 Messages are received using message-queues and work-queues. 14 received counter values to the console. 59 uart:~$ Counter received: 0 60 Counter received: 1 61 Counter received: 2 62 Counter received: 3
|
/Zephyr-Core-3.5.0/samples/net/mqtt_publisher/ |
D | README.rst | 302 1485663798: Received PINGREQ from zephyr_publisher 304 1485663798: Received PUBLISH from zephyr_publisher (d0, q0, r0, m0, 'sensors', ... (15 bytes)) 305 1485663799: Received PUBLISH from zephyr_publisher (d0, q1, r0, m1888, 'sensors', ... (15 bytes)) 307 1485663799: Received PUBLISH from zephyr_publisher (d0, q2, r0, m16356, 'sensors', ... (15 bytes)) 309 1485663799: Received PUBREL from zephyr_publisher (Mid: 16356) 311 1485663800: Received PINGREQ from zephyr_publisher 313 1485663800: Received PUBLISH from zephyr_publisher (d0, q0, r0, m0, 'sensors', ... (15 bytes)) 314 1485663801: Received PUBLISH from zephyr_publisher (d0, q1, r0, m45861, 'sensors', ... (15 bytes)) 316 1485663801: Received PUBLISH from zephyr_publisher (d0, q2, r0, m53870, 'sensors', ... (15 bytes)) 318 1485663801: Received PUBREL from zephyr_publisher (Mid: 53870) [all …]
|
/Zephyr-Core-3.5.0/samples/bluetooth/iso_connected_benchmark/ |
D | README.rst | 59 current connection (since the CIG was connected) and latest 1000 received 76 …[00:00:17.774,902] <inf> iso_connected: Overall : Received 100/100 (100.00%) - Total packets l… 77 …[00:00:17.774,932] <inf> iso_connected: Current Conn: Received 100/100 (100.00%) - Total packets l… 78 …[00:00:17.774,963] <inf> iso_connected: Latest 1000 : Received 100/100 (100.00%) - Total packets l… 81 …[00:00:18.532,409] <inf> iso_connected: Overall : Received 200/200 (100.00%) - Total packets l… 82 …[00:00:18.532,470] <inf> iso_connected: Current Conn: Received 200/200 (100.00%) - Total packets l… 83 …[00:00:18.532,501] <inf> iso_connected: Latest 1000 : Received 200/200 (100.00%) - Total packets l… 91 current connection (since the CIG was connected) and latest 1000 received 111 …[00:00:05.072,052] <inf> iso_connected: Overall : Received 100/100 (100.00%) - Total packets l… 112 …[00:00:05.072,113] <inf> iso_connected: Current Conn: Received 100/100 (100.00%) - Total packets l… [all …]
|
/Zephyr-Core-3.5.0/samples/subsys/ipc/openamp/ |
D | README.rst | 77 Master core received a message: 1 78 Master core received a message: 3 79 Master core received a message: 5 81 Master core received a message: 99 91 Remote core received a message: 0 92 Remote core received a message: 2 93 Remote core received a message: 4 95 Remote core received a message: 98
|
/Zephyr-Core-3.5.0/include/zephyr/drivers/console/ |
D | uart_mcumgr.h | 24 * @brief Contains an mcumgr fragment received over UART. 33 * @brief Function that gets called when an mcumgr packet is received. 35 * Function that gets called when an mcumgr packet is received. This function 64 * mcumgr request packet is received. 67 * packet is received.
|
/Zephyr-Core-3.5.0/subsys/modem/backends/ |
D | modem_backend_uart_async.c | 54 uint32_t received; in modem_backend_uart_async_event_handler() local 111 received = ring_buf_put(&backend->async.receive_rdb[receive_rb_used_index], in modem_backend_uart_async_event_handler() 115 if (received < evt->data.rx.len) { in modem_backend_uart_async_event_handler() 153 * used to store received data. in modem_backend_uart_async_open() 203 uint32_t received; in modem_backend_uart_async_receive() local 206 received = 0; in modem_backend_uart_async_receive() 210 received += ring_buf_get(&backend->async.receive_rdb[receive_rdb_unused], buf, size); in modem_backend_uart_async_receive() 213 return (int)received; in modem_backend_uart_async_receive() 222 received += ring_buf_get(&backend->async.receive_rdb[receive_rdb_unused], in modem_backend_uart_async_receive() 223 &buf[received], (size - received)); in modem_backend_uart_async_receive() [all …]
|
/Zephyr-Core-3.5.0/subsys/mgmt/mcumgr/transport/ |
D | Kconfig.uart | 18 Enables handling of SMP commands received over UART. This is a 20 commands to be received over UART without requiring an additional 39 The asynchronous UART API requires registering RX buffers for received data; when the RX 58 Maximum size of SMP frames sent and received over UART, in bytes.
|
/Zephyr-Core-3.5.0/include/zephyr/net/ |
D | net_stats.h | 39 * @brief Number of bytes sent and received. 44 /** Number of bytes received */ 45 net_stats_t received; member 49 * @brief Number of network packets sent and received. 54 /** Number of packets received */ 62 /** Number of received packets at the IP layer. */ 106 /** Number of received ICMP packets. */ 126 /** Amount of received and sent TCP application data. */ 135 /** Number of received TCP segments. */ 147 /** Number of received TCP segments with a bad ACK number. */ [all …]
|
/Zephyr-Core-3.5.0/drivers/modem/ |
D | modem_receiver.h | 5 * aspects of received protocol data. 53 * @brief Get received data. 56 * @param buf: buffer to copy the received data to. 58 * @param bytes_read: amount of received bytes 84 * @param buf: rx buffer to use for received data.
|