From 35f8da31335cb4790e0e54f60e1f28344ce20aff Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Wed, 6 Aug 2025 16:08:41 +0200 Subject: [PATCH] fix wrong value --- src/pifmrds/rds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pifmrds/rds.c b/src/pifmrds/rds.c index ed0239d..c1e5e0e 100644 --- a/src/pifmrds/rds.c +++ b/src/pifmrds/rds.c @@ -141,7 +141,7 @@ void get_rds_group(int *buffer, int stereo, int ct_clock_enabled) { //ptyn? af_state = af_state + 2; if(af_state > rds_params.af[0]) af_state = 0; } else { - blocks[2] = 244 << 8 | 0xCD; // 244 is the base, since 244+0 is still 244, 0 AFs, the CD is just a filler + blocks[2] = 224 << 8 | 0xCD; // 224 is the base, since 244+0 is still 244, 0 AFs, the CD is just a filler } blocks[3] = rds_params.ps[ps_state*2] << 8 | rds_params.ps[ps_state*2+1]; ps_state++;