microReticulumTbeam/exercises/205_sustained_link/scripts/handy_log_parsers.txt
John Poole 2a6fef41c7 What changed from 204:
Kept all units in transport mode with reticulum.transport_enabled(true).
Removed physical blocking: SIM_PHY_BLOCK_BOB_CY=0, no per-unit block.
Removed the extra deep transmission/debug flags from platformio.ini.
Kept the 204 announcement schedule/protocol.
Removed intentional Link teardown after message cycles.
Every unit now attempts an outbound Link to every peer that announces.
Added retry health behavior: 3 Link attempts within 3 minutes, then wait for a fresh announce before trying that peer again.
Preserved substantive parseable logs: TX ANNOUNCE, RX ANNOUNCE, TX LINKREQUEST, LINK ACTIVE, TX LINK, RX LINK, retry/failure/reset events.
Updated copied helper scripts to point at 205_sustained_link.
Updated README for the new exercise behavior.
2026-06-03 09:19:33 -07:00

16 lines
444 B
Text

Using awk:
awk -v start="20260603_080000" -v end="20260603_083000" '
$1 >= start && $1 < end { print }
' BOB_raw_20260602_191631.log | grep Hi
awk -v start="20260603_080000" -v end="20260603_083000" '
$1 >= start && $1 < end { print }
' BOB_raw_20260602_191631.log | grep 'TX LINK:'
awk -v start="20260603_080000" -v end="20260603_083000" '
$1 >= start && $1 < end { print }
' BOB_raw_20260602_191631.log | grep 'RX LINK:'