Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 52298c1

Browse files
committedApr 9, 2022
Made -e flag imply the right (wrong\!) mark and space freqs and baud rate.
1 parent c4ccbdc commit 52298c1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎src/gen_packets.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -480,6 +480,11 @@ int main(int argc, char **argv)
480480
dw_printf ("EOTD type must be %c or %c\n", EOTD_TYPE_F2R, EOTD_TYPE_R2F);
481481
exit(EXIT_FAILURE);
482482
}
483+
484+
modem.achan[0].mark_freq = 1800; // NOTE: THIS IS BACKWARDS UNTIL REV 1.7
485+
modem.achan[0].space_freq = 1200; // backwards, too.
486+
modem.achan[0].baud = 1200;
487+
483488
break;
484489

485490
default:

0 commit comments

Comments
 (0)
Please sign in to comment.