1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-07-04 22:02:34 +00:00
trezor-firmware/core/embed/lib/ble/messages.h
tychovrahe d5dd619635 STM
2023-09-14 11:36:22 +02:00

17 lines
248 B
C

#ifndef __BLE_MESSAGES__
#define __BLE_MESSAGES__
#include <stdbool.h>
void send_state_request(void);
void send_advertising_on(bool whitelist);
void send_advertising_off(void);
bool send_erase_bonds(void);
bool send_disconnect(void);
#endif