1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-07-02 12:52:34 +00:00
trezor-firmware/core/embed/rust/src/trezorhal/ble.rs
tychovrahe a8ae9496cb STM
2024-01-25 00:22:27 +01:00

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) }
}