Hello,
I'm working on a project where I would like to use two nRF52810, one as broadcaster and one as observer. The idea is that the broadcaster sends an advertisement in a random interval. The observer should receive this advertisement. The problem I have is that this is time critical, so I would need an interrupt when the BLE package was sent on the sending device and an interrupt when the package was received on the observer. I do not want to connect the two devices since more than only these two should be added later. Is this possible? How would I set up an interrupt that fires when the advertisement was received? Ideally I would just get an interrupt on every ble advertisement arriving and filter then if it was from my sender or another device.
Thanks in advance.