ble_mesh: add api to set net_transmit

This commit is contained in:
lly 2020-05-07 15:12:00 +08:00 committed by maojianxin
parent d1027a0514
commit c27b399a49

View File

@ -3528,6 +3528,16 @@ u8_t bt_mesh_net_transmit_get(void)
return 0; return 0;
} }
void bt_mesh_net_transmit_set(u8_t val)
{
if (conf == NULL) {
BT_ERR("Invalid conf!");
return;
}
conf->net_transmit = val;
}
u8_t bt_mesh_relay_get(void) u8_t bt_mesh_relay_get(void)
{ {
if (conf) { if (conf) {