Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Is there a plan to support Bluetooth? #203

Open
tadli opened this issue Feb 11, 2021 · 23 comments
Open

Is there a plan to support Bluetooth? #203

tadli opened this issue Feb 11, 2021 · 23 comments

Comments

@tadli
Copy link

tadli commented Feb 11, 2021

Bluetooth can be used for sharing network, it would be cool to use Bluetooth function.

@rsta2
Copy link
Owner

rsta2 commented Feb 11, 2021

There was some rudimentary BT support in Circle earlier, but it was removed for legal reasons. In my opinion it is not possible to develop BT support, without being a member of the BT SIG (Special Interest Group). Please see issue #90 for a discussion on this.

@rsta2
Copy link
Owner

rsta2 commented Feb 11, 2021

I had an idea, that it may be possible to port an existing BT stack (e.g. BlueZ) to Circle. BlueZ is GPL licensed and perhaps may be ported without using the BT core specs, which is prohibited for non-BT-SIG-members.

Unfortunately I'm not familiar with BlueZ and I don't know, if it would provide all required functions, which one would need to use BT with Circle. In any way it's probably a big effort to port it.

@tadli
Copy link
Author

tadli commented Feb 11, 2021

Can I use bluetooth by just apt install bluez without porting bluetooth driver? I'm testing raspberry pi and I installed bluez directly to use bluetooth

@tadli
Copy link
Author

tadli commented Feb 11, 2021

To avoid Bluetooth membership fees, I thought maybe I could use AdHocWiFi, which can also share the network.

@sebastienNEC
Copy link

Just my 2 cents: it's relatively easy to port nimble (https://github.com/apache/mynewt-nimble) to circle. I've done it (in a hacky way but it works) and it's only a matter of modifying nimble_hci.cpp to use CBTUARTTransport and writing the OS abstraction layer nimble_npl_os.cpp

@rsta2
Copy link
Owner

rsta2 commented Feb 11, 2021

@tadli I don't think, that any available BT stack will run on Circle without porting it. Unfortunately I don't expect the Circle WLAN support to work in a wireless ad hoc scenario.

@sebastienNEC Thanks for the info about nimble! This is very interesting. I will have a look on it.

@rsta2
Copy link
Owner

rsta2 commented Feb 19, 2021

I had a look on NimBLE and currently I can connect a RPi 4B running the NimBLE bleprph application with my desktop PC. I used an USB BT dongle so far, not the internal BT device. Unfortunately this is only a quick porting hack and the way to some useful application and support for all internal BT devices of the different RPi models is probably long. I'm currently not sure, if it is worth going this way. NimBLE does support BLE (BT Low Energy) only, so it wouldn't help for standard BT (BR/EDR) applications. And I have no idea, for what this can be used in the end. Honestly I'm not very familiar with BT applications.

@sebastienNEC
Copy link

Hello Rene, sorry for the very late reply ! I am personally using (nim)BLE for wireless MIDI but I guess other use cases include wireless mice/keyboards ? And potentially quite a few IoT devices.
I agree though that it might not be worth continuing in this direction if there is not a big demand.
It might be enough to just document your early efforts in e.g. /doc/nimble-support.txt so that people in need of BLE don't need to start from scratch?
Just a suggestion of course :)

@rsta2
Copy link
Owner

rsta2 commented Apr 7, 2021

No problem. I would be interested in using NimBLE to communicate between multiple devices (e.g. some RPis Zero W) in a mesh, like the microbit does in the image at the end of this tutorial. Unfortunately I do not know, how to implement this from the point of view of a NImBLE application. NimBLE provides many services for applications, but which have to be used?

This is really a hack so far, what I have done and describing it wouldn't help very much probably. But if there would be an interesting application, I would think about improving it.

@probonopd
Copy link

To avoid Bluetooth membership fees

Isn't Raspberry Pi Trading Ltd. paying those, and hence we are paying them by buying the devices?

@rsta2
Copy link
Owner

rsta2 commented Nov 19, 2023 via email

@omersiar
Copy link

omersiar commented Nov 27, 2024

I found this gem

https://www.rpi4os.com/part7-bluetooth/
It seems it isn't any different from WLAN

@rsta2
Copy link
Owner

rsta2 commented Nov 27, 2024

Yes, but this does only send a BT beacon. For a reasonable BT support it would require much more. The hardware interface is not the problem. We already had this in Circle years ago (see commit 41b5650). It was removed for legal reasons.

One could only try to port some existing open source BT package, but I tried this already with NimBLE, which is BLE (low energy), but found out, that it works only on the RPi 400 (and maybe newer RPi 4B) models, so I aborted this project. I don't know about RPi 5, because it was not available at this time. I'm also not a BT expert, so this would be difficult for me.

@omersiar
Copy link

Oh did not realise about the 41b5650. Since HCI layer is covered I think I can try to get NimBLE's GATT layer to work, that can be an entry point to BLE MIDI which is simple enough.

@sebastienNEC
Copy link

I have done that (BLE MIDI with nimble, see above) a few years back, and it works indeed. @rsta2 BLE also works on raspberry pi zero W.
Let me know if you need pointers for necessary Nimble adaptations, i.e. nimble_hci.cpp and nimble_npl_os.cpp.

@omersiar
Copy link

@sebastienNEC If pointers were there do we access to all NimBLE Host APIs? GATT Server/Client? Do you know if also the Security API works?

@sebastienNEC
Copy link

I've only ever used the JustWorks association model, but there's no reason the rest should not work.

I am using both ble_gatts_* and ble_gattc_* functions, so yes both GATT server/client works.
More specifically, I am making the raspi expose a Nordic UART service (so acting as a host), and I am also scanning/connecting to BLE MIDI devices (so acting as a client)

I also tried to send raw audio over an L2CAP connection, but abandoned that, as I could not get low enough latency for my purposes.

Mind you, I was using Nimbler 1.0.0 back then, and they are quite a few versions further.

@rsta2
Copy link
Owner

rsta2 commented Nov 27, 2024 via email

@rsta2
Copy link
Owner

rsta2 commented Nov 28, 2024

If one of you guys wants to provide a BT library for Circle, it would be great! I think you have more BT knowledge than myself, so this should be easier for you. In case you want to develop such library, my suggestion would be, to do this as a separate project in your own project space on GitHub. Circle could be integrated as a submodule, like this has been done for other projects (e.g. libcamera). This would make it easier for you to develop and maintain the project. There could be a link added in the Circle Wiki to your project, so that potential users can find it more quickly. If you need modifications in Circle to be able to support BT, just let me know!

@probonopd
Copy link

Not a BLE expert, but could this be helpful in any way?

@rsta2
Copy link
Owner

rsta2 commented Nov 28, 2024 via email

@omersiar
Copy link

omersiar commented Dec 3, 2024

@rsta2 Thanks for putting it in a direction. @sebastienNEC I have created the repository for it > https://github.com/omersiar/libbt (just a placeholder, structure copied from libcamera)
If you decide to share your MIDI implementation that would also greatly appreciated. I am targeting both circle's Step48 and NimBLE 1.8.0 releases.

@sebastienNEC
Copy link

Hello, sorry about the late reply ! I won't be able to contribute to the actual development unfortunately (lack of time, 2 small kids), but I can of course provide my code as it is. Give me some day to clean it up though, and I'll add it to the repository you created :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants