-
Notifications
You must be signed in to change notification settings - Fork 6.9k
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
Question : Bluetooth mesh using long range #29913
Comments
Hi, You seem to be on the right track, but you're the first to pursue this in the Zephyr project, as far as I'm aware. I am planning on migrating adv.c to using the extended advertising API though, which should make it significantly easier to patch the mesh stack to use long range in a proprietary variant of the mesh. As far as I can tell, it should be possible to combine the long range feature with the mesh by converting to the extended advertising API and setting the |
I have added support for ext adv in mesh in a PR: #30005 Once this goes in, it should be a lot simpler to add long range support. |
Hello, (I'm a colleague of Tobi)
With our actual understanding of the bluetooth mesh, there are two types of bearers :
Does that mean that :
As you seem to be from Nordic, could we ask you if the nRF connect SDK would have a proprietary version of the bearer ? In short, would we able to setup a long range mesh network with the nRF connect SDK and/or nRF5 SDK ? Best regards |
It will not be possible to qualify a solution on the long range advertising bearer, as it'd be a direct violation of the first sentence in section 3.3.1 in the mesh profile specification. Even if we provide a solution for using long range in the mesh, it'll be proprietary, unless the Bluetooth SIG ends up adding support for it in a future version of the specification. With that being said, we can provide a proprietary extension of the advertising bearer, similar to the Nordic DevZone patch for the nRF5 SDK. I'm not sure whether we'll be able to put this in the stack, or whether it'll be a patch like the nRF5 SDK solution. This'll have to wait until the extended advertising support is merged |
Closing since the question is answered. |
so @trond-snekvik , How can i Implement a Coded-PHY mesh using your SDK? . I am using a Vendor specific Model in which I send My sensor data via mesh. I am facing Range issues here, It will be a great help if I could make it coded |
Dear @carlescufi & @trond-snekvik , |
Hey, sorry, I no longer work at Nordic, or with Bluetooth Mesh. It sounds like your issues are antenna related, but you could look into increasing the TX power on the advertisements. I'd recommend asking on the discord or the Nordic devzone |
Dear @trond-snekvik thanks a lot for your kind attention and reply. I will then look for the answers in nordic devZone or the discord channel |
For a specific project, i would like to use the concept of Bluetooth mesh with long range (coded phy). So far, i have tried to understand both parts. For the long rage part, i have created a beacon by using these specific methods.
beacon_lr.zip
By analyzing frames from my nrf52840dk, i found that those frames were really using long range feature (coded phy).
For the other part, i flashed the specific example
zephyr/samples/board/nrf/mesh/onoff-app/
on my board and provisioning this board with the app for iphonenRF Mesh
. The both parts were working well.Then, i tried to mix the two of then to have my goal which is Bluetooth mesh on long range. I've seen in the zephyr SDK that the communication between the BLE layer and the Mesh layer is made inside the file
zephyr/subsys/bluetooth/mesh/adv.c
. There seems to be no implemention for using long range in this file. My first question is : Do i use the right way to implement the long range feature?Does it already exist an implementation of bluetooth mesh on long range in zephyr ? if not, is it planned in a nearest future an implementation for this feature ?
Thanks in advance for the reply.
Best regards
The text was updated successfully, but these errors were encountered: