aboutsummaryrefslogtreecommitdiffstats
path: root/arduino/libraries/Bluefruit52Lib/src/BLEGap.h
blob: 3b6fa8a042527b25c679e0a9c932d3d698e950dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/**************************************************************************/
/*!
    @file     BLEGap.h
    @author   hathach (tinyusb.org)

    @section LICENSE

    Software License Agreement (BSD License)

    Copyright (c) 2018, Adafruit Industries (adafruit.com)
    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are met:
    1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
    3. Neither the name of the copyright holders nor the
    names of its contributors may be used to endorse or promote products
    derived from this software without specific prior written permission.

    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY
    EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
    WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
    DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
    DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
    ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/**************************************************************************/
#ifndef BLEGAP_H_
#define BLEGAP_H_

#include <Arduino.h>
#include "bluefruit_common.h"
#include "BLEUuid.h"
#include "utility/bonding.h"

enum
{
  CONN_CFG_PERIPHERAL = 1,
  CONN_CFG_CENTRAL = 2,
};

class BLEGap
{
  public:
    typedef void (*connect_callback_t    ) (uint16_t conn_hdl);
    typedef void (*disconnect_callback_t ) (uint16_t conn_hdl, uint8_t reason);

    BLEGap(void);

    uint8_t        getAddr               (uint8_t mac[6]);
    bool           setAddr               (uint8_t mac[6], uint8_t type);
//    bool    setPrivacy                ();  sd_ble_gap_privacy_set()

    bool           connected            (uint16_t conn_hdl);
    bool           paired               (uint16_t conn_hdl);
    bool           requestPairing       (uint16_t conn_hdl);

    uint8_t        getRole              (uint16_t conn_hdl);

    uint8_t        getPeerAddr          (uint16_t conn_hdl, uint8_t addr[6]);
    ble_gap_addr_t getPeerAddr          (uint16_t conn_hdl);
    uint16_t       getPeerName          (uint16_t conn_hdl, char* buf, uint16_t bufsize);

    uint16_t       getMTU               (uint16_t conn_hdl);
    uint16_t       getMaxMtuByConnCfg   (uint8_t conn_cfg);
    uint16_t       getMaxMtu            (uint8_t conn_hdl);

    uint8_t        getHvnQueueSize      (uint8_t conn_hdl);
    uint8_t        getWriteCmdQueueSize (uint8_t conn_hdl);

    bool           getHvnPacket         (uint16_t conn_hdl);
    bool           getWriteCmdPacket    (uint16_t conn_hdl);

    void           configPrphConn       (uint16_t mtu_max, uint8_t event_len, uint8_t hvn_qsize, uint8_t wrcmd_qsize);
    void           configCentralConn    (uint16_t mtu_max, uint8_t event_len, uint8_t hvn_qsize, uint8_t wrcmd_qsize);

    /*------------------------------------------------------------------*/
    /* INTERNAL USAGE ONLY
     * Although declare as public, it is meant to be invoked by internal
     * code. User should not call these directly
     *------------------------------------------------------------------*/
    void _eventHandler(ble_evt_t* evt);

    // Array of TX Packet semaphore, indexed by connection handle
    // Peer info where conn_hdl serves as index
    typedef struct {
      bool     connected;
      bool     paired;
      uint8_t  role;
      uint16_t att_mtu;

      ble_gap_addr_t addr;

      uint16_t         ediv;
      bond_keys_t*     bond_keys; // Shared keys with bonded device, size ~ 80 bytes

      SemaphoreHandle_t hvn_tx_sem;
      SemaphoreHandle_t wrcmd_tx_sem;

      bool              hvc_received;

      // On-demand semaphore that are created on the fly
      SemaphoreHandle_t hvc_sem;
      SemaphoreHandle_t pair_sem;
    } gap_peer_t;

    gap_peer_t* _get_peer(uint16_t conn_hdl) { return &_peers[conn_hdl]; }

  private:
    struct {
        uint16_t mtu_max;
        uint8_t  event_len;
        uint8_t  hvn_tx_qsize;
        uint8_t  wr_cmd_qsize;
    } _cfg_prph, _cfg_central;

    gap_peer_t _peers[BLE_MAX_CONN];

    ble_gap_sec_params_t _sec_param;

    friend class AdafruitBluefruit;
};

#endif /* BLEGAP_H_ */