0
1
mirror of https://github.com/radio95-rnt/fm95.git synced 2026-02-27 11:33:54 +01:00

start modularization

This commit is contained in:
2025-06-21 15:06:27 +02:00
parent 33ffcd9682
commit 16f0a53c05
18 changed files with 79 additions and 43 deletions

23
filter/bs412.h Normal file
View File

@@ -0,0 +1,23 @@
#pragma once
#ifdef DEBUG
#define BS412_DEBUG
#endif
#include <math.h>
#ifdef BS412_DEBUG
#include "../lib/debug.h"
#endif
typedef struct
{
int sample_counter;
int sample_rate;
double sample;
} MPXPowerMeasurement;
float dbr_to_deviation(float dbr);
float deviation_to_dbr(float deviation);
void init_modulation_power_measure(MPXPowerMeasurement *mpx, int sample_rate);
float measure_mpx(MPXPowerMeasurement *mpx, float deviation);