gatt_bearer.c (2fca4dad957cd7b88f4657ed51e89c12615dda72) gatt_bearer.c (d567aeb32398f2a708611c446bcd9bad85a152cd)
1/*
2 * Copyright (C) 2017 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

--- 25 unchanged lines hidden (view full) ---

34 * [email protected]
35 *
36 */
37
38#define BTSTACK_FILE__ "gatt_bearer.c"
39
40#include <string.h>
41
1/*
2 * Copyright (C) 2017 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

--- 25 unchanged lines hidden (view full) ---

34 * [email protected]
35 *
36 */
37
38#define BTSTACK_FILE__ "gatt_bearer.c"
39
40#include <string.h>
41
42#include "ble/gatt-service/mesh_proxy_service_server.h"
43#include "ble/att_server.h"
42#include "ble/att_server.h"
44#include "mesh/gatt_bearer.h"
45#include "ble/core.h"
46#include "bluetooth.h"
47#include "bluetooth_data_types.h"
48#include "bluetooth_gatt.h"
49#include "btstack_debug.h"
43#include "ble/core.h"
44#include "bluetooth.h"
45#include "bluetooth_data_types.h"
46#include "bluetooth_gatt.h"
47#include "btstack_debug.h"
50#include "btstack_util.h"
51#include "btstack_run_loop.h"
52#include "btstack_event.h"
48#include "btstack_event.h"
53#include "gap.h"
54#include "btstack_event.h"
49#include "btstack_event.h"
50#include "btstack_run_loop.h"
51#include "btstack_util.h"
52#include "gap.h"
53#include "mesh/gatt-service/mesh_proxy_service_server.h"
54#include "mesh/gatt_bearer.h"
55#include "provisioning.h"
56
57#define NUM_TYPES 3
58
59static btstack_packet_handler_t client_callbacks[NUM_TYPES];
60static int request_can_send_now[NUM_TYPES];
61static int last_sender;
62

--- 278 unchanged lines hidden ---
55#include "provisioning.h"
56
57#define NUM_TYPES 3
58
59static btstack_packet_handler_t client_callbacks[NUM_TYPES];
60static int request_can_send_now[NUM_TYPES];
61static int last_sender;
62

--- 278 unchanged lines hidden ---