1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-07-27 08:58:28 +00:00
trezor-firmware/core/embed/unix/ble/state.h
tychovrahe c8e6b029ac STM
2023-06-15 22:47:22 +02:00

17 lines
229 B
C

#ifndef __BLE_STATE__
#define __BLE_STATE__
#include <stdbool.h>
#include <stdint.h>
bool ble_initialized(void);
void set_initialized(bool initialized);
bool ble_connected(void);
void set_connected(bool connected);
#endif