Initial commit

This commit is contained in:
2021-06-14 22:45:03 +02:00
commit 08a70e5f0e
7 changed files with 1380 additions and 0 deletions

10
fm_mpx.h Normal file
View File

@@ -0,0 +1,10 @@
/*
PiFmAdv - Advanced FM transmitter for the Raspberry Pi
Copyright (C) 2017 Miegl
See https://github.com/Miegl/PiFmAdv
*/
extern int fm_mpx_open(char *filename, size_t len, int cutoff_freq, int preemphasis_corner_freq, int srate, int nochan);
extern int fm_mpx_get_samples(double *mpx_buffer, double *rds_buffer, float mpx, int rds, int wait);
extern int fm_mpx_close();