Preserving special field test runs

This commit is contained in:
John Poole 2026-05-17 12:16:11 -07:00
commit aca4ff7c95
21 changed files with 1872 additions and 1 deletions

View file

@ -2,6 +2,17 @@
# ./analyze_reticulum_file_transfer_20260516_1130.pl 20250516_1115_zerodev1.txt 20250516_1115_zerodev2.txt
# ./analyze_reticulum_file_transfer_20260516_1130.pl --detail 20250516_1115_zerodev1.txt 20250516_1115_zerodev2.txt
# ./analyze_reticulum_file_transfer_20260516_1130.pl --csv chunks_$(date +%Y%m%d_%H%M).csv 20250516_1115_zerodev1.txt 20250516_1115_zerodev2.txt
#
=pod
Below works:
./analyze_reticulum_file_transfer_20260516_1130.pl ../tmp/run11/20260516_1918_zerodev1_cross_Constitution_CPP.txt ../tmp/run11/20260516_1918_zerodev2_cross_Constitution_CPP.txt
Below failed with: No RX file_chunk records with send_epoch= were found.
./analyze_reticulum_file_transfer_20260516_1130.pl ../tmp/run11/20260516_1942_zerodev1_cross_Constitution_CPP.txt ../tmp/run11/20260516_1942_zerodev2_cross_Constitution_CPP.txt
=cut
#
# chmod 755 analyze_reticulum_file_transfer_20260516_1130.pl
# 2026-05-16 ChatGPT
# $Header$
@ -224,7 +235,8 @@ sub parse_file {
++$line_no;
if ($in_command_clump) {
push @commands, $line;
if ($line =~ /^#\s*End of command clump\s*$/) {
if ($line =~ /^#\s*End of command clump\s*$/
|| $line =~ /^#\s*zerodev\d+ Command clump END\s*$/) {
$in_command_clump = 0;
}
next;