How to use embedded device as bluetooth HSP/HFP source The Next CEO of Stack OverflowWhy does pulseaudio handle the sound quality connection to a BT device?What file system to use on embedded static ram device?Pulseaudio does not register HFP profile in SDP serverHow to access a keyboard in embedded devicehow to use bluetooth device with HSP/HFP profile using pulseaudio >=6 and bluez >= 5.24How to connect to my phone via bluetooth serialCan't use make command BluetoothUsing acquire-write and acquire-notify in bluetoothctl for Bluetooth Low Energe characteristic BLENo sound played on Bluetooth Headset even if connectedDell XPS 15 9550 - Bluetooth will not connect to anything
Expressing the idea of having a very busy time
Help/tips for a first time writer?
Expectation in a stochastic differential equation
What does "shotgun unity" refer to here in this sentence?
Yu-Gi-Oh cards in Python 3
Is there a way to save my career from absolute disaster?
Players Circumventing the limitations of Wish
Can Sneak Attack be used when hitting with an improvised weapon?
It is correct to match light sources with the same color temperature?
Decide between Polyglossia and Babel for LuaLaTeX in 2019
Lucky Feat: How can "more than one creature spend a luck point to influence the outcome of a roll"?
Help! I cannot understand this game’s notations!
Does Germany produce more waste than the US?
Could a dragon use its wings to swim?
IC has pull-down resistors on SMBus lines?
Is fine stranded wire ok for main supply line?
Towers in the ocean; How deep can they be built?
Is there an equivalent of cd - for cp or mv
Airplane gently rocking its wings during whole flight
What is the process for cleansing a very negative action
Easy to read palindrome checker
In the "Harry Potter and the Order of the Phoenix" video game, what potion is used to sabotage Umbridge's speakers?
Reshaping json / reparing json inside shell script (remove trailing comma)
Is it convenient to ask the journal's editor for two additional days to complete a review?
How to use embedded device as bluetooth HSP/HFP source
The Next CEO of Stack OverflowWhy does pulseaudio handle the sound quality connection to a BT device?What file system to use on embedded static ram device?Pulseaudio does not register HFP profile in SDP serverHow to access a keyboard in embedded devicehow to use bluetooth device with HSP/HFP profile using pulseaudio >=6 and bluez >= 5.24How to connect to my phone via bluetooth serialCan't use make command BluetoothUsing acquire-write and acquire-notify in bluetoothctl for Bluetooth Low Energe characteristic BLENo sound played on Bluetooth Headset even if connectedDell XPS 15 9550 - Bluetooth will not connect to anything
I have ARM based board, kernel 4.14.67 and bluez-4.101. I want to connect bluetooth headset for playing sound from the board. My question is similar to that: https://stackoverflow.com/questions/36295784/bluez-4-101-on-embedded-arm-device
I try to do the following:
1) make a file named .asoundrc
in home directory
2) hciconfig hci0 up piscan
3) bluetoothd -d -n
(how to make debug output more verbose?? It prints just a small amount of info)
4) sdptool add hs
- Is this enables Headset profile?
5) power on headset and enter pairable mode on it
6) hcitool cc 00:1C:EF:9F:86:BC
- try to connect to headset, there is no any output from the command and I don't know is it successful or not?
7) then I immediately call hcitool con
and see
Connections:
< ACL 00:1C:EF:9F:86:BC handle 43 state 1 lm MASTER
but a few seconds later subsequent call of hcitool con
returns nothing connected.
No debug output in dmesg or from bluetoothd seen. What may be the reason of connection goes down?
8) Try to play aplay -D btheadset ./testsound.wav
, but it failed:
bt_audio_service_open: connect() failed: Connection refused (111)
aplay: main:722: audio open error: Connection refused
.asoundrc
contents:
pcm.btheadset
type plug
slave
pcm
type bluetooth
device "00:1C:EF:9F:86:BC"
profile "auto"
hint
show on
description "Bluetooth Headset"
ctl.btheadset
type bluetooth
embedded bluez
New contributor
add a comment |
I have ARM based board, kernel 4.14.67 and bluez-4.101. I want to connect bluetooth headset for playing sound from the board. My question is similar to that: https://stackoverflow.com/questions/36295784/bluez-4-101-on-embedded-arm-device
I try to do the following:
1) make a file named .asoundrc
in home directory
2) hciconfig hci0 up piscan
3) bluetoothd -d -n
(how to make debug output more verbose?? It prints just a small amount of info)
4) sdptool add hs
- Is this enables Headset profile?
5) power on headset and enter pairable mode on it
6) hcitool cc 00:1C:EF:9F:86:BC
- try to connect to headset, there is no any output from the command and I don't know is it successful or not?
7) then I immediately call hcitool con
and see
Connections:
< ACL 00:1C:EF:9F:86:BC handle 43 state 1 lm MASTER
but a few seconds later subsequent call of hcitool con
returns nothing connected.
No debug output in dmesg or from bluetoothd seen. What may be the reason of connection goes down?
8) Try to play aplay -D btheadset ./testsound.wav
, but it failed:
bt_audio_service_open: connect() failed: Connection refused (111)
aplay: main:722: audio open error: Connection refused
.asoundrc
contents:
pcm.btheadset
type plug
slave
pcm
type bluetooth
device "00:1C:EF:9F:86:BC"
profile "auto"
hint
show on
description "Bluetooth Headset"
ctl.btheadset
type bluetooth
embedded bluez
New contributor
add a comment |
I have ARM based board, kernel 4.14.67 and bluez-4.101. I want to connect bluetooth headset for playing sound from the board. My question is similar to that: https://stackoverflow.com/questions/36295784/bluez-4-101-on-embedded-arm-device
I try to do the following:
1) make a file named .asoundrc
in home directory
2) hciconfig hci0 up piscan
3) bluetoothd -d -n
(how to make debug output more verbose?? It prints just a small amount of info)
4) sdptool add hs
- Is this enables Headset profile?
5) power on headset and enter pairable mode on it
6) hcitool cc 00:1C:EF:9F:86:BC
- try to connect to headset, there is no any output from the command and I don't know is it successful or not?
7) then I immediately call hcitool con
and see
Connections:
< ACL 00:1C:EF:9F:86:BC handle 43 state 1 lm MASTER
but a few seconds later subsequent call of hcitool con
returns nothing connected.
No debug output in dmesg or from bluetoothd seen. What may be the reason of connection goes down?
8) Try to play aplay -D btheadset ./testsound.wav
, but it failed:
bt_audio_service_open: connect() failed: Connection refused (111)
aplay: main:722: audio open error: Connection refused
.asoundrc
contents:
pcm.btheadset
type plug
slave
pcm
type bluetooth
device "00:1C:EF:9F:86:BC"
profile "auto"
hint
show on
description "Bluetooth Headset"
ctl.btheadset
type bluetooth
embedded bluez
New contributor
I have ARM based board, kernel 4.14.67 and bluez-4.101. I want to connect bluetooth headset for playing sound from the board. My question is similar to that: https://stackoverflow.com/questions/36295784/bluez-4-101-on-embedded-arm-device
I try to do the following:
1) make a file named .asoundrc
in home directory
2) hciconfig hci0 up piscan
3) bluetoothd -d -n
(how to make debug output more verbose?? It prints just a small amount of info)
4) sdptool add hs
- Is this enables Headset profile?
5) power on headset and enter pairable mode on it
6) hcitool cc 00:1C:EF:9F:86:BC
- try to connect to headset, there is no any output from the command and I don't know is it successful or not?
7) then I immediately call hcitool con
and see
Connections:
< ACL 00:1C:EF:9F:86:BC handle 43 state 1 lm MASTER
but a few seconds later subsequent call of hcitool con
returns nothing connected.
No debug output in dmesg or from bluetoothd seen. What may be the reason of connection goes down?
8) Try to play aplay -D btheadset ./testsound.wav
, but it failed:
bt_audio_service_open: connect() failed: Connection refused (111)
aplay: main:722: audio open error: Connection refused
.asoundrc
contents:
pcm.btheadset
type plug
slave
pcm
type bluetooth
device "00:1C:EF:9F:86:BC"
profile "auto"
hint
show on
description "Bluetooth Headset"
ctl.btheadset
type bluetooth
embedded bluez
embedded bluez
New contributor
New contributor
edited 2 days ago
fra-san
1,8991620
1,8991620
New contributor
asked 2 days ago
user344380user344380
1
1
New contributor
New contributor
add a comment |
add a comment |
0
active
oldest
votes
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
user344380 is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f509451%2fhow-to-use-embedded-device-as-bluetooth-hsp-hfp-source%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
user344380 is a new contributor. Be nice, and check out our Code of Conduct.
user344380 is a new contributor. Be nice, and check out our Code of Conduct.
user344380 is a new contributor. Be nice, and check out our Code of Conduct.
user344380 is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f509451%2fhow-to-use-embedded-device-as-bluetooth-hsp-hfp-source%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown