mesh: fix compile warnings

This commit is contained in:
Matthias Ringwald 2019-07-10 16:23:18 +02:00
parent 7b5b1264b4
commit ef986d08fc
4 changed files with 1 additions and 8 deletions

View File

@ -52,6 +52,7 @@
#include "btstack_event.h"
#include "gap.h"
#include "mesh_keys.h"
#include "mesh_iv_index_seq_number.h"
#define BEACON_TYPE_UNPROVISIONED_DEVICE 0
#define BEACON_TYPE_SECURE_NETWORK 1

View File

@ -108,8 +108,6 @@ static void mesh_lower_transport_abort_transmission(void);
// state
static int lower_transport_retry_count;
static uint32_t lower_transport_seq;
// lower transport incoming
static btstack_linked_list_t lower_transport_incoming;

View File

@ -44,11 +44,6 @@
#include "btstack_memory.h"
#include "btstack_config.h"
static void mesh_print_hex(const char * name, const uint8_t * data, uint16_t len){
printf("%-20s ", name);
printf_hexdump(data, len);
}
// network key list
static btstack_linked_list_t network_keys;
static uint8_t mesh_network_key_used[MAX_NR_MESH_NETWORK_KEYS];

View File

@ -63,7 +63,6 @@ static uint8_t prov_buffer_out[MESH_PROV_MAX_PROXY_PDU];
// ConfirmationInputs = ProvisioningInvitePDUValue || ProvisioningCapabilitiesPDUValue || ProvisioningStartPDUValue || PublicKeyProvisioner || PublicKeyDevice
static uint8_t prov_confirmation_inputs[1 + 11 + 5 + 64 + 64];
static uint8_t prov_authentication_method;
static uint8_t prov_authentication_action;
static uint8_t prov_public_key_oob_used;
static uint8_t prov_emit_public_key_oob_active;
static uint8_t prov_emit_output_oob_active;