Home
last modified time | relevance | path

Searched refs:iso_send_count (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/samples/bluetooth/iso_broadcast/src/
Dmain.c113 uint32_t iso_send_count = 0; in main() local
114 uint8_t iso_data[sizeof(iso_send_count)] = { 0 }; in main()
198 sys_put_le32(iso_send_count, iso_data); in main()
210 if ((iso_send_count % CONFIG_ISO_PRINT_INTERVAL) == 0) { in main()
211 printk("Sending value %u\n", iso_send_count); in main()
214 iso_send_count++; in main()
/Zephyr-latest/samples/bluetooth/iso_broadcast_benchmark/src/
Dbroadcaster.c46 static uint32_t iso_send_count; variable
611 iso_send_count++; in iso_timer_timeout()
613 if ((iso_send_count % 100) == 0) { in iso_timer_timeout()
614 LOG_INF("Sent %u packets", iso_send_count); in iso_timer_timeout()
817 iso_send_count = 0; in test_run_broadcaster()
/Zephyr-latest/samples/bluetooth/iso_connected_benchmark/src/
Dmain.c87 static uint32_t iso_send_count; variable
228 iso_send_count++; in iso_send()
230 if ((iso_send_count % 100) == 0) { in iso_send()
231 LOG_INF("Sending value %u", iso_send_count); in iso_send()
1411 if (i < sizeof(iso_send_count)) { in main()