mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-06-27 02:12:35 +00:00
19 lines
289 B
C
19 lines
289 B
C
#ifndef __ADVERTISING__
|
|
#define __ADVERTISING__
|
|
|
|
#include <stdbool.h>
|
|
|
|
void advertising_init(void);
|
|
|
|
void advertising_start(bool whitelist);
|
|
|
|
void advertising_stop(void);
|
|
|
|
void advertising_restart_without_whitelist(void);
|
|
|
|
bool is_advertising(void);
|
|
|
|
bool is_advertising_wl(void);
|
|
|
|
#endif
|