aboutsummaryrefslogtreecommitdiff
path: root/src/codec2_fm.h
diff options
context:
space:
mode:
authordrowe67 <[email protected]>2023-07-20 08:59:48 +0930
committerGitHub <[email protected]>2023-07-20 08:59:48 +0930
commit06d4c11e699b0351765f10398abb4f663a984f36 (patch)
tree33e22af0814c5b6c3d676f096ae8c2ac8a3ed9f0 /src/codec2_fm.h
parent6588e77f38bdebd7adffe091b22e7760d95d0ccb (diff)
parent4d6c143c0abec15e1d6ed1fd95d36f80e6cb7df8 (diff)
Merge pull request #3 from drowe67/dr-cleanup21.2.0
Cleanup Part 2
Diffstat (limited to 'src/codec2_fm.h')
-rw-r--r--src/codec2_fm.h21
1 files changed, 10 insertions, 11 deletions
diff --git a/src/codec2_fm.h b/src/codec2_fm.h
index 36faece..f61fc23 100644
--- a/src/codec2_fm.h
+++ b/src/codec2_fm.h
@@ -31,16 +31,16 @@
#include "comp.h"
struct FM {
- float Fs; /* setme: sample rate */
- float fm_max; /* setme: maximum modulation frequency */
- float fd; /* setme: maximum deviation */
- float fc; /* setme: carrier frequency */
- COMP *rx_bb;
- COMP rx_bb_filt_prev;
- float *rx_dem_mem;
- float tx_phase;
- int nsam;
- COMP lo_phase;
+ float Fs; /* setme: sample rate */
+ float fm_max; /* setme: maximum modulation frequency */
+ float fd; /* setme: maximum deviation */
+ float fc; /* setme: carrier frequency */
+ COMP *rx_bb;
+ COMP rx_bb_filt_prev;
+ float *rx_dem_mem;
+ float tx_phase;
+ int nsam;
+ COMP lo_phase;
};
struct FM *fm_create(int nsam);
@@ -50,4 +50,3 @@ void fm_mod(struct FM *fm, float tx_in[], float tx_out[]);
void fm_mod_comp(struct FM *fm_states, float tx_in[], COMP tx_out[]);
#endif
-