0
1
mirror of https://github.com/radio95-rnt/rds95.git synced 2026-02-27 04:43:52 +01:00
This commit is contained in:
2025-03-22 20:48:51 +01:00
parent dbe664187d
commit 61cfe716d2
2 changed files with 2 additions and 2 deletions

View File

@@ -142,7 +142,7 @@ int main(int argc, char **argv) {
float rds_buffer[NUM_MPX_FRAMES*2];
while(!stop_rds) {
for (uint16_t i = 0; i < NUM_MPX_FRAMES*2; i++) {
for (uint16_t i = 0; i < NUM_MPX_FRAMES*2; i += 2) {
rds_buffer[i] = get_rds_sample(&rdsModulator, 0);
rds_buffer[i+1] = get_rds_sample(&rdsModulator, 1);
}