Lines Matching refs:period_log
2250 uint8_t period_log; member
2317 if (param->period_log == 0x11) { in heartbeat_pub_set()
2320 pub.period = bt_mesh_hb_pwr2(param->period_log); in heartbeat_pub_set()
2338 if (param->period_log > 0x11) { in heartbeat_pub_set()
2401 uint8_t period_log, status; in heartbeat_sub_set() local
2411 period_log = net_buf_simple_pull_u8(buf); in heartbeat_sub_set()
2413 LOG_DBG("sub_src 0x%04x sub_dst 0x%04x period 0x%02x", sub_src, sub_dst, period_log); in heartbeat_sub_set()
2415 if (period_log > 0x11) { in heartbeat_sub_set()
2416 LOG_WRN("Prohibited subscription period 0x%02x", period_log); in heartbeat_sub_set()
2420 if (period_log == 0x11) { in heartbeat_sub_set()
2423 period = bt_mesh_hb_pwr2(period_log); in heartbeat_sub_set()
2439 if (sub.src == BT_MESH_ADDR_UNASSIGNED || !period_log) { in heartbeat_sub_set()