provisioner.c (c9de66827c7af5453e045120bfe8a37cd00b48a9) | provisioner.c (77ba3d3f9fd2c90e975cda31e3c706784e95d43a) |
---|---|
1/* 2 * Copyright (C) 2014 BlueKitchen GmbH 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions 6 * are met: 7 * 8 * 1. Redistributions of source code must retain the above copyright --- 27 unchanged lines hidden (view full) --- 36 */ 37 38#define __BTSTACK_FILE__ "provisioner.c" 39 40#include <stdint.h> 41#include <stdio.h> 42#include <stdlib.h> 43#include <string.h> | 1/* 2 * Copyright (C) 2014 BlueKitchen GmbH 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions 6 * are met: 7 * 8 * 1. Redistributions of source code must retain the above copyright --- 27 unchanged lines hidden (view full) --- 36 */ 37 38#define __BTSTACK_FILE__ "provisioner.c" 39 40#include <stdint.h> 41#include <stdio.h> 42#include <stdlib.h> 43#include <string.h> |
44#include "ble/mesh/adv_bearer.h" 45#include "ble/mesh/pb_adv.h" 46#include "ble/mesh/beacon.h" | 44#include "mesh/adv_bearer.h" 45#include "mesh/pb_adv.h" 46#include "mesh/beacon.h" |
47#include "provisioning.h" 48#include "provisioning_provisioner.h" 49#include "btstack.h" 50#include "btstack_tlv.h" 51 52static btstack_packet_callback_registration_t hci_event_callback_registration; 53 54static void packet_handler (uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size); --- 260 unchanged lines hidden --- | 47#include "provisioning.h" 48#include "provisioning_provisioner.h" 49#include "btstack.h" 50#include "btstack_tlv.h" 51 52static btstack_packet_callback_registration_t hci_event_callback_registration; 53 54static void packet_handler (uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size); --- 260 unchanged lines hidden --- |