0
1
mirror of https://github.com/radio95-rnt/fm95.git synced 2026-02-26 19:23:51 +01:00

try to measure mpx power

This commit is contained in:
2025-03-29 19:01:19 +01:00
parent d2393dc2e7
commit 3a1904511f
4 changed files with 47 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
{
"port": 13452,
"time": 1743162622776,
"time": 1743269976272,
"version": "0.0.3"
}

23
lib/bs412.c Normal file
View File

@@ -0,0 +1,23 @@
#include "bs412.h"
void init_modulation_power_measure(MPXPowerMeasurement* mpx, int sample_rate) {
mpx->i = 0;
mpx->sample = 0;
mpx->sample_rate = sample_rate;
}
float measure_mpx(MPXPowerMeasurement* mpx, int deviation) {
mpx->sample += 20*log10f(deviation/19);
mpx->i++;
if (mpx->i >= mpx->sample_rate) {
float modulation_power = mpx->sample/mpx->i;
mpx->sample = 0.0f;
mpx->i = 0;
return modulation_power;
} else {
return mpx->sample/mpx->i;
}
}

13
lib/bs412.h Normal file
View File

@@ -0,0 +1,13 @@
#pragma once
#include <math.h>
typedef struct
{
int i;
int sample_rate;
float sample;
} MPXPowerMeasurement;
void init_modulation_power_measure(MPXPowerMeasurement *mpx, int sample_rate);
float measure_mpx(MPXPowerMeasurement *mpx, int deviation);

View File

@@ -19,6 +19,7 @@
#include "../lib/filters.h"
#include "../lib/fm_modulator.h"
#include "../lib/optimization.h"
#include "../lib/bs412.h"
#define DEFAULT_SAMPLE_RATE 192000
@@ -428,6 +429,9 @@ int main(int argc, char **argv) {
init_preemphasis(&preemp_l, preemphasis_tau, sample_rate);
init_preemphasis(&preemp_r, preemphasis_tau, sample_rate);
MPXPowerMeasurement power;
init_modulation_power_measure(&power, sample_rate);
signal(SIGINT, stop);
signal(SIGTERM, stop);
@@ -511,6 +515,12 @@ int main(int argc, char **argv) {
if(rds_on || stereo) advance_oscillator(&osc);
if(mpx_on) output[i] += hard_clip(current_mpx_in, MPX_CLIPPER_THRESHOLD)*MPX_VOLUME;
if(sca_on) output[i] += modulate_fm(&sca_mod, hard_clip(current_sca_in, sca_clipper_threshold))*SCA_VOLUME;
float mpower = measure_mpx(&power, output[i]*75000);
if(mpower > 3) {
printf("MPX Power over 3 dbr");
}
output[i] *= master_volume;
}