-
Notifications
You must be signed in to change notification settings - Fork 19
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
Support for Bose and Fairphone speakers/headphones/earbuds #32
Comments
I agree, right now we're just focusing on PineBuds Pro, but in the future I think we'll definitely try to make this a bit universal. |
Yeah @WebWire-NL is on the money here. This codebase is very very tightly coupled to the chip used. I suspect that will be true for a very long time; and at this point trying to support other devices would be naïve. Trying to make the code too general purpose is how you end up with the current mess that we have. I think sure we can support other bes earbuds that have flashing connections exposed but probably in 6-12onths when things are in a better place. For devices that use Bluetooth OTA it would be even later than that. Really this sort of firmware is 99% support libraries for the specific chip with a thin layer of customisation on top. For things like the Bose, it would be better to start a new project for those and do similar to what we are doing here in getting a cleaned up and modernised codebase working first. If a project like that existed, we could certainly look at working together though. |
Could we not flash these devices using their OTA update method? Then we don't need UART.
I know there are a lot of problems here. Some heaphones use propietary, in-house chip, some may have something like chain of trust and often it is not possible to do the flashing over wire using e.g. UART (which is more reliable than OTA); unless you disassemble the heaphones and program the chip directly. We can probably add (good) support only for devices like PineBuds Pro, but I'd still like to explore the possibility.
I know this is the case now. But this is not Assembly, this is C, which is universal. You can compile it for any CPU. Just because this isn't universal yet doesn't mean it can't be. Yeah, we can't do something like Linux kernel in embedded devices, but we can definitely do a bit modular and universal.
Yeah I know, what do you mean?
No one has denied that it is currently completely hardware specific. |
That's true, but my point is that maybe within a year or so we could support other devices using the same chip. And that some day in 2-4 years we could support completely different devices, such as Bose, JBL, Marshall, Sony or other headphones with a completely different chip. Assuming the device doesn't have insurmountable technical limitations (like chain of trust) preventing it. Do you think this is impossible?
Great!
Yep.
?
We don't have codebase for Bose. It's propietary firmware. |
@lizz-34 we will never support any other Earbuds, unless one of two conditions are fulfilled:
I think more realistic is that someday, ordinary PineBuds will release, with low price and less features but still good quality. About the support libraries which @Ralim mentions, please, whole this firmware is tightly tied to BES Hardware Abstraction Layer, thus their drivers. It is not modular, so even when we have, for example, SDK for Sony Earbuds, it uses different chip, different SDK, and this project (yet) is not modular for such support. One day, it might be, but right now, no. |
I understand that without design documents (schematics, pinouts, etc.) developing software for the any device is really hell. I also know that there are no other earbuds/headphones/speakers than the PineBuds Pro whose desing documents is public. However, if (hypothetically) for example design documents for the Fairphone TWE (AFAIK uses a completely different SoC than PineBuds, no BES's chip at all) were released, would we be able support for it? Then we could make the modular, universal firmware I described that supports several different devices? Or am I wrong? There is no way to do that for audio devices? Well, we all know that Bose, Sony, JBL, Marshall or others will not provide design documents for years, if ever. However, if we want support for a few devices (for example Bose and Sony flagships), is it possible to do reverse engineering? That has been done with many mobile device SoCs and elsewhere. Or is there something in the audio devices that prevents this?
I fully understand that now this firmware isn't modular or universal at all. AFAIK this is a slightly modified version of the SDK made specifically for the BES chip. I'm talking about the future here (which of course may sound stupid to you, because you understand better what kind of work the things I describe are. I'm only JS dev.). |
Of course, I guess this is plan, to make this modular, but it needs to be done step by step. First step is clear the code and get it to stable state, afterwards it can be made modular. Reverse engineering of existing buds is possible, but very hard and not worth post of the times. |
I just hope this would make switching between devices less painful. I'm way too often searching for the 2nd device the headphones are connected to, just so that I can disconnected it and play something on the other device... xD |
Don't get me wrong, this time isn't yet. However, I would like to inquire if there would be a possibility and how we could bring support and install this firmware to headphones such as Bose 700 and Fairphone True Wireless Earbuds?
The text was updated successfully, but these errors were encountered: