Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Display CRC bytes? #358

Closed
K4KDR opened this issue Nov 11, 2021 · 4 comments
Closed

Display CRC bytes? #358

K4KDR opened this issue Nov 11, 2021 · 4 comments

Comments

@K4KDR
Copy link

K4KDR commented Nov 11, 2021

Good day!

Is there any way to actually DISPLAY the CRC bytes that were transmitted by a sender?

The question is not whether a packet's CRC is correct - but rather a tool is needed here to actually VIEW the CRC bytes so that we can confirm which CRC calculation is being included with outgoing packets.

Many thanks!

-Scott, K4KDR

@wb2osz
Copy link
Owner

wb2osz commented Nov 11, 2021

Look in hdlc_rec.c. Somewhere around line 562, depending on the exact version you have.
Here the actual received and expected FCS values are compared.

    actual_fcs = H->frame_buf[H->frame_len-2] | (H->frame_buf[H->frame_len-1] << 8);
    expected_fcs = fcs_calc (H->frame_buf, H->frame_len - 2);

    if (actual_fcs == expected_fcs) {
      alevel_t alevel = demod_get_audio_level (chan, subchan);
      multi_modem_process_rec_frame (chan, subchan, slice, H->frame_buf, H->frame_len - 2, alevel, RETRY_NONE, 0);   /* len-2 to remove FCS. */
    }
    else {

#if TEST
dw_printf ("*** actual fcs = %04x, expected fcs = %04x ***\n", actual_fcs, expected_fcs);
#endif
}

Delete the two lines beginning with "#" then rebuild.
If the FCS is not correct, the actual and expected values will be printed.
You could also move the dw_printf before the "if" to print the values all the time.

@wb2osz wb2osz closed this as completed Nov 11, 2021
@K4KDR
Copy link
Author

K4KDR commented Nov 11, 2021

WONDERFUL!!

Thank you so much!

@K4KDR
Copy link
Author

K4KDR commented Nov 11, 2021

Thank you again for pointing me to the file where the 'fcs' bytes can be printed.

I have tried positioning that print statement in numerous places above & inside of those 'if' statements, but nothing results in the expected printout. This is a fresh 'git clone' of the latest MASTER branch.

One example of my edit is:

direwolf-edit

... but after deleting the /build folder and completely rebuilding/reinstalling, the output is not changed:

direwolf

... did I do that incorrectly?

Thanks so much!

-Scott

@K4KDR
Copy link
Author

K4KDR commented Nov 11, 2021

Found a work-around!

If I understand correctly, that entire section of code was controlled by a flag called "OLD_WAY", which was not set.

I commented that out, along with a couple of corresponding lines farther down, and then found a place that will print the CRC bytes with each valid frame (don't know why they print 9 times, but that's ok)

direwolf-edit-working

... and my output:

direwolf-with-crc-output

... so that will do the job until / unless you have time one day to provide a more proper method. This is extremely useful for examining packets in regard to what is 'really' being transmitted over-the-air.

Thanks very much!

-Scott

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants