km4ack / Pi-APRS

packet program designed to communicate with ISS via APRS
GNU General Public License v3.0
16 stars 4 forks source link

PI-APRS Time stamp #2

Open km4ack opened 4 years ago

km4ack commented 4 years ago

Would it possible to add a time stamp to the incoming packets on the terminal?

K4KDR commented 4 years ago

Don't know if it's helpful, but here is how I time-stamp telemetry decodes in Direwolf (9600 baud .conf file in this example) -AND- write the same data to a text file in a ./log directory:

direwolf -c 9600.conf -dup -t 0 -qd | ts '[%Y-%m-%d %H:%M:%S]' | tee -a log/$(date +%Y-%m-%d--%H%M)

km4ack commented 4 years ago

Thanks!