mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-07-06 06:42:33 +00:00
11 lines
281 B
C
11 lines
281 B
C
|
|
#include "ble_gap.h"
|
|
|
|
#include "connection.h"
|
|
|
|
static uint16_t m_conn_handle =
|
|
BLE_CONN_HANDLE_INVALID; /**< Handle of the current connection. */
|
|
|
|
void set_connection_handle(uint16_t val) { m_conn_handle = val; }
|
|
uint16_t get_connection_handle(void) { return m_conn_handle; }
|