-
Notifications
You must be signed in to change notification settings - Fork 395
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
Be able to send multiple pocsag message at once. #743
Comments
Sending multiple messages in one batch is a feature of the POCSAG protocol and you're right, at the moment it is not implemented in RadioLib. The reason is that supporting this somewhat complicates implementation, and has some downsides. For example, whether your messages will be sent in one batch (in POCSAG terminology) will depend on their size and destination address. Nothing is stopping this from being added, I just didn't think there was that much benefit to it honestly. I'm open to being convinced otherwise of course :) |
Ham Radio operator use DAPNET. https://hampager.de There is a high amount of user in Germany, soon in Belgium, ... We can receive up to 50messages to transmit. But we're limited by timeslots of 6.4seconds. And at the moment, I might be the only one using dapnet on a ESP32. But I'm quite stuck with RadioLib as I loose so much time with the header. It would be a cheap DAPNET Transmitter. |
And I'm not confortable enough in C/C++ to add that part. |
DAPNET was one the original use case for RadioLib support of POCSAG (when it got first requested some 4 years ago). I never used it myself, though it seems interesting. I'll see if this can be implemented. Of course, pull requests are welcome, from any member of the DAPNET community. |
Hello,
I'm currently building a pocsag transmitter connected to internet and the issue is that I cannot send multiple message at once.
I have 6.4s on a timeslot where I can transmit and I do not want it to replicate the header which cause a massive time loss.
so my request is to add a function that would allow me to send multiple message to multiple pager.
Thanks for your answer
Bastien ON4BCY
The text was updated successfully, but these errors were encountered: