We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72865fa commit ffbe91eCopy full SHA for ffbe91e
src/bluetooth.rs
@@ -135,7 +135,7 @@ async fn power_up_and_wait_for_connection(
135
info!("{} 📱 AA Wireless Profile: registered", NAME);
136
137
let mut handle_hsp = None;
138
- if dongle_mode {
+ if !dongle_mode {
139
// Headset profile
140
let profile = Profile {
141
uuid: HSP_HS_UUID,
@@ -162,7 +162,7 @@ async fn power_up_and_wait_for_connection(
162
163
// try to connect to saved devices or provided one via command line
164
let mut connect_task: Option<JoinHandle<Result<()>>> = None;
165
166
if let Some(address) = connect {
167
let adapter_cloned = adapter.clone();
168
0 commit comments