1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-06-27 18:32:34 +00:00
trezor-firmware/core/embed/lib/ble/messages.h
tychovrahe 9d15e012fa STM
2023-12-01 14:53:45 +01:00

25 lines
383 B
C

#ifndef __BLE_MESSAGES__
#define __BLE_MESSAGES__
#include <stdbool.h>
bool wait_for_answer(void);
void process_poll(uint8_t *data, uint32_t len);
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);
bool wait_for_answer(void);
bool ble_initialize(void);
#endif