Send and receive PHY packets #645
-
|
I'm making an nRF52832 emulator and I'd like to be able to interact with it through a BLE connection. I can already read and write BLE PHY packets from/to it, and I'd like to use bumble in order to connect e.g. an android emulator to it. Is there any way to do this with bumble? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
There are two ways Bumble could interface with the emulator: |
Beta Was this translation helpful? Give feedback.
There are two ways Bumble could interface with the emulator:
1/ Communicate HCI packets with code running on the emulator (i.e run a "Controller" on the emulator). In this case, Bumble is the host stack, and the code running on the emulator is the controller. That's pretty simple (that works already today with physical nrfXX devices running Zephyr)
2/ Communicate with the emulator via the radio side. Since there's no equivalent, on the PHY side, to the HCI standard the exists on the host side, the emulated radio's PHY would need to exchange PHY packets with another controller that's compatible with those PHY packets. This could be another nRF52832 emulator, or it could be another emulated…