mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-04-07 16:20:19 +00:00
mesh: fix warnings
This commit is contained in:
parent
d2d1d60be1
commit
460082dcd5
@ -94,7 +94,6 @@ void mesh_load_app_keys(void);
|
|||||||
// Mesh Model to Appkey List
|
// Mesh Model to Appkey List
|
||||||
void mesh_load_appkey_lists(void);
|
void mesh_load_appkey_lists(void);
|
||||||
void mesh_delete_appkey_lists(void);
|
void mesh_delete_appkey_lists(void);
|
||||||
void mesh_model_reset_appkeys(mesh_model_t * mesh_model);
|
|
||||||
uint8_t mesh_model_bind_appkey(mesh_model_t * mesh_model, uint16_t appkey_index);
|
uint8_t mesh_model_bind_appkey(mesh_model_t * mesh_model, uint16_t appkey_index);
|
||||||
void mesh_model_unbind_appkey(mesh_model_t * mesh_model, uint16_t appkey_index);
|
void mesh_model_unbind_appkey(mesh_model_t * mesh_model, uint16_t appkey_index);
|
||||||
int mesh_model_contains_appkey(mesh_model_t * mesh_model, uint16_t appkey_index);
|
int mesh_model_contains_appkey(mesh_model_t * mesh_model, uint16_t appkey_index);
|
||||||
|
@ -725,7 +725,7 @@ static void mesh_adv_bearer_handle_network_event(uint8_t packet_type, uint16_t c
|
|||||||
transmission_interval = (transmit_config >> 3) * 10;
|
transmission_interval = (transmit_config >> 3) * 10;
|
||||||
|
|
||||||
#ifdef LOG_NETWORK
|
#ifdef LOG_NETWORK
|
||||||
printf("TX-E-NetworkPDU count %u, interval %u ms (%p): ", adv_bearer_network_pdu, transmission_count, transmission_interval);
|
printf("TX-E-NetworkPDU (%p) count %u, interval %u ms (%p): ", adv_bearer_network_pdu, transmission_count, transmission_interval);
|
||||||
printf_hexdump(adv_bearer_network_pdu->data, adv_bearer_network_pdu->len);
|
printf_hexdump(adv_bearer_network_pdu->data, adv_bearer_network_pdu->len);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -257,6 +257,8 @@ mesh_model_t * mesh_model_get_configuration_server(void);
|
|||||||
|
|
||||||
mesh_model_t * mesh_access_model_for_address_and_model_identifier(uint16_t element_address, uint32_t model_identifier, uint8_t * status);
|
mesh_model_t * mesh_access_model_for_address_and_model_identifier(uint16_t element_address, uint32_t model_identifier, uint8_t * status);
|
||||||
|
|
||||||
|
void mesh_model_reset_appkeys(mesh_model_t * mesh_model);
|
||||||
|
|
||||||
// Mesh Model Subscriptions
|
// Mesh Model Subscriptions
|
||||||
int mesh_model_contains_subscription(mesh_model_t * mesh_model, uint16_t address);
|
int mesh_model_contains_subscription(mesh_model_t * mesh_model, uint16_t address);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user