mirror of
https://github.com/markqvist/OpenModem.git
synced 2025-07-17 12:28:51 -04:00
Filters reworked for new samplerate
This commit is contained in:
parent
74e0b0d1db
commit
56bed68143
4 changed files with 69 additions and 57 deletions
|
@ -31,7 +31,7 @@ void ax25_poll(AX25Ctx *ctx) {
|
|||
while ((c = fgetc(ctx->ch)) != EOF) {
|
||||
if (!ctx->escape && c == HDLC_FLAG) {
|
||||
if (ctx->frame_len >= AX25_MIN_FRAME_LEN) {
|
||||
if (ctx->crc_in == AX25_CRC_CORRECT) {
|
||||
if (ctx->crc_in == AX25_CRC_CORRECT || CONFIG_PASSALL) {
|
||||
#if OPEN_SQUELCH == true
|
||||
LED_RX_ON();
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue