mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-07-04 05:42:34 +00:00
17 lines
229 B
C
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
|