mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-07-02 12:52:34 +00:00
10 lines
184 B
Rust
10 lines
184 B
Rust
use super::ffi;
|
|
|
|
pub fn ble_connected() -> bool {
|
|
unsafe { ffi::ble_connected() }
|
|
}
|
|
|
|
pub fn start_advertising(whitelist: bool) {
|
|
unsafe { ffi::start_advertising(whitelist) }
|
|
}
|