Home
last modified time | relevance | path

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

/Zephyr-latest/tests/bluetooth/gap/src/
Dmain.c18 zassert_equal(BT_GAP_ADV_INTERVAL_TO_US(0x0020U), 20000U); in ZTEST()
19 zassert_equal(BT_GAP_ADV_INTERVAL_TO_US(0x0021U), 20625U); in ZTEST()
20 zassert_equal(BT_GAP_ADV_INTERVAL_TO_US(0x0022U), 21250U); in ZTEST()
/Zephyr-latest/include/zephyr/bluetooth/
Dgap.h841 #define BT_GAP_ADV_INTERVAL_TO_US(_interval) ((uint32_t)((_interval) * 625U)) macro
851 #define BT_GAP_ADV_INTERVAL_TO_MS(_interval) (BT_GAP_ADV_INTERVAL_TO_US(_interval) / USEC_PER_MSEC)
/Zephyr-latest/samples/bluetooth/iso_broadcast_benchmark/src/
Dbroadcaster.c648 BT_GAP_ADV_INTERVAL_TO_US(interval) != sdu_interval_us) { in calc_adv_interval()