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

fix definitons

This commit is contained in:
2025-03-14 18:52:04 +01:00
parent 7e8f616a3d
commit 975ba541a7

View File

@@ -3,6 +3,13 @@
#include "waveforms.h" #include "waveforms.h"
#include "modulator.h" #include "modulator.h"
#ifndef max
#define max(a,b) (((a) > (b)) ? (a) : (b))
#endif
#ifndef min
#define min(a,b) (((a) < (b)) ? (a) : (b))
#endif
static struct rds_t rds; static struct rds_t rds;
static float waveform[2][FILTER_SIZE]; static float waveform[2][FILTER_SIZE];