Searched refs:notify_data (Results 1 – 6 of 6) sorted by relevance
/Zephyr-latest/samples/bluetooth/mtu_update/peripheral/src/ |
D | main.c | 12 extern void run_peripheral_sample(uint8_t *notify_data, size_t notify_data_size, uint16_t seconds); 16 uint8_t notify_data[100] = {}; in main() local 18 notify_data[13] = 0x7f; in main() 19 notify_data[99] = 0x55; in main() 21 run_peripheral_sample(notify_data, sizeof(notify_data), 0); in main()
|
D | peripheral_mtu_update.c | 79 void run_peripheral_sample(uint8_t *notify_data, size_t notify_data_size, uint16_t seconds) in run_peripheral_sample() argument 102 bt_gatt_notify(default_conn, notify_crch, notify_data, notify_data_size); in run_peripheral_sample()
|
/Zephyr-latest/tests/bsim/bluetooth/host/att/mtu_update/src/ |
D | main_peripheral.c | 21 extern void run_peripheral_sample(uint8_t *notify_data, size_t notify_data_size, uint16_t seconds); 23 uint8_t notify_data[100] = {}; variable 27 notify_data[13] = 0x7f; in test_peripheral_main() 28 notify_data[99] = 0x55; in test_peripheral_main() 30 run_peripheral_sample(notify_data, sizeof(notify_data), PERIPHERAL_NOTIFY_TIME); in test_peripheral_main()
|
D | main_central.c | 26 uint8_t notify_data[100] = {}; variable 34 is_data_equal = (length == sizeof(notify_data) && !memcmp(notify_data, data, length)); in notify_cb() 37 LOG_HEXDUMP_DBG(notify_data, sizeof(notify_data), "expected data"); in notify_cb() 46 notify_data[13] = 0x7f; in test_central_main() 47 notify_data[99] = 0x55; in test_central_main()
|
/Zephyr-latest/drivers/smbus/ |
D | intel_pch_smbus.c | 71 uint16_t notify_data; member 941 data->notify_data = pch_reg_read(dev, PCH_SMBUS_NDLB); in smbus_isr() 942 data->notify_data |= in smbus_isr()
|
/Zephyr-latest/subsys/bluetooth/host/ |
D | gatt.c | 2318 struct notify_data { struct 2725 struct notify_data *data = user_data; in notify_cb() 2831 struct notify_data *data = user_data; in match_uuid() 2839 static bool gatt_find_by_uuid(struct notify_data *found, in gatt_find_by_uuid() 2868 struct notify_data data; in bt_gatt_notify_cb() 3069 struct notify_data data; in bt_gatt_notify_multiple() 3093 struct notify_data data; in bt_gatt_indicate()
|