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

The telemetry toolkit would benefit from a simple way to increase sequence numbers #9

Closed
elafargue opened this issue Nov 9, 2015 · 2 comments

Comments

@elafargue
Copy link

Some services (aprs.fi for instance) will complain about duplicate sequence numbers for telemetry if the sequence number is not changed at each packet...

@elafargue
Copy link
Author

I used the following little script in my CBEACON commands, I'm sure it's possible to compress it as a one-liner though:

#!/bin/sh
SEQ=`cat /tmp/seq`
SEQ=$(expr \( $SEQ + 1 \) % 100)
echo $SEQ | tee /tmp/seq

@wb2osz
Copy link
Owner

wb2osz commented Dec 31, 2015

A new script, telem-seq.sh, has been added.
This has been pushed to the "dev" branch.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants