Lines Matching refs:period_log
2251 uint8_t period_log; member
2318 if (param->period_log == 0x11) { in heartbeat_pub_set()
2321 pub.period = bt_mesh_hb_pwr2(param->period_log); in heartbeat_pub_set()
2339 if (param->period_log > 0x11) { in heartbeat_pub_set()
2402 uint8_t period_log, status; in heartbeat_sub_set() local
2412 period_log = net_buf_simple_pull_u8(buf); in heartbeat_sub_set()
2414 LOG_DBG("sub_src 0x%04x sub_dst 0x%04x period 0x%02x", sub_src, sub_dst, period_log); in heartbeat_sub_set()
2416 if (period_log > 0x11) { in heartbeat_sub_set()
2417 LOG_WRN("Prohibited subscription period 0x%02x", period_log); in heartbeat_sub_set()
2421 if (period_log == 0x11) { in heartbeat_sub_set()
2424 period = bt_mesh_hb_pwr2(period_log); in heartbeat_sub_set()
2440 if (sub.src == BT_MESH_ADDR_UNASSIGNED || !period_log) { in heartbeat_sub_set()