0
1
mirror of https://github.com/radio95-rnt/rds95.git synced 2026-02-26 20:33:53 +01:00

dont attenuate

This commit is contained in:
2025-04-29 18:50:34 +02:00
parent 0e877bccc1
commit 02818f9d22

View File

@@ -146,5 +146,5 @@ float get_rds_sample(RDSModulator* rdsMod, uint8_t stream) {
if (rdsMod->data[stream].out_sample_index == SAMPLE_BUFFER_SIZE) rdsMod->data[stream].out_sample_index = 0;
uint8_t tooutput = rdsMod->params.rdsgen > stream ? 1 : 0;
return sample*rdsMod->params.level*tooutput / 3.5; // 3.5 volts from piracz
return sample*rdsMod->params.level*tooutput;
}