Skip to content

Commit

Permalink
fix ()
Browse files Browse the repository at this point in the history
  • Loading branch information
alanbjohnston authored Jun 20, 2021
1 parent 41bfbca commit ae2eaa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion afsk/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2222,7 +2222,7 @@ void get_tlm_fox() {
*/
// if ((mode == BPSK) && (firstTime == 1)) // only do first time
// if (firstTime == 1) // only do first time
if ((firstTime == 1) || ((loop_count++ % 180) == 0) && (mode = FSK)) || ((loop_count++ % 80) == 0) && (mode = BPSK))) // do first time and was every 180 samples
if ((firstTime == 1) || (((loop_count++ % 180) == 0) && (mode = FSK)) || (((loop_count++ % 80) == 0) && (mode = BPSK))) // do first time and was every 180 samples
{
int max;
if (mode == FSK)
Expand Down

0 comments on commit ae2eaa5

Please sign in to comment.