From b86e88413d4c6ec428aaedb147f7675f28882fe4 Mon Sep 17 00:00:00 2001 From: drowe67 Date: Fri, 14 Jul 2023 12:36:50 +0930 Subject: clang-format -i applied to src unittest misc --- src/codec2_fm.h | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) (limited to 'src/codec2_fm.h') 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 - -- cgit v1.2.3