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

simultaneous transmission dont work? #199

Open
User25514 opened this issue Mar 17, 2024 · 1 comment
Open

simultaneous transmission dont work? #199

User25514 opened this issue Mar 17, 2024 · 1 comment

Comments

@User25514
Copy link

So I've written a python script that sends binary on both transmitters, S1G and HIFI, but each transmitter can transmit binary one by one.
The issue I'm currently facing is that if I want to multi-thread, and use both transmitters at the same time, then I get the error:
03-17 21:08:23.353 1135 1139 E CARIBOULITE Radio cariboulite_radio_activate_channel@cariboulite_radio.c:1077 PLL didn't lock ``03-17 21:08:23.618 1135 1138 E CARIBOULITE Radio cariboulite_radio_activate_channel@cariboulite_radio.c:1077 PLL didn't lock

How do I fix this issue so I can transmit simultaneously.

@matteoserva
Copy link

The radio chip in use, at86rf215, supports arbitrary waveforms only when sending the same data to both transmitters. This is a hardware limitation and can't be changed.
Alternatively you can set one or both transmitters in baseband mode. In that mode you can only use one of the supported modulation schemes (FSK, OFDM...) but the two transceivers are completely independent.

On the software side I think there is still no support for baseband mode, so you have to write some code to enable it.

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

2 participants