| 
									
										
										
										
											2024-07-03 00:52:16 +02:00
										 |  |  | /*  snb.h
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | This file is part of a program that implements a Software-Defined Radio. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Copyright (C) 2015, 2016 Warren Pratt, NR0V | 
					
						
							|  |  |  | Copyright (C) 2024 Edouard Griffiths, F4EXB Adapted to SDRangel | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | This program is free software; you can redistribute it and/or | 
					
						
							|  |  |  | modify it under the terms of the GNU General Public License | 
					
						
							|  |  |  | as published by the Free Software Foundation; either version 2 | 
					
						
							|  |  |  | of the License, or (at your option) any later version. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  | but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  | GNU General Public License for more details. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  | along with this program; if not, write to the Free Software | 
					
						
							|  |  |  | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The author can be reached by email at | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | warren@wpratt.com | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef wdsp_bpsnba_h
 | 
					
						
							|  |  |  | #define wdsp_bpsnba_h
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-02 08:01:46 +02:00
										 |  |  | #include <vector>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "export.h"
 | 
					
						
							| 
									
										
										
										
											2024-07-03 00:52:16 +02:00
										 |  |  | namespace WDSP{ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class NOTCHDB; | 
					
						
							|  |  |  | class NBP; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-02 08:01:46 +02:00
										 |  |  | class WDSP_API BPSNBA | 
					
						
							| 
									
										
										
										
											2024-07-03 00:52:16 +02:00
										 |  |  | { | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     int run;                        // run the filter
 | 
					
						
							|  |  |  |     int run_notches;                // use the notches, vs straight bandpass
 | 
					
						
							|  |  |  |     int position;                   // position in the processing pipeline
 | 
					
						
							|  |  |  |     int size;                       // buffer size
 | 
					
						
							|  |  |  |     int nc;                         // number of filter coefficients
 | 
					
						
							|  |  |  |     int mp;                         // minimum phase flag
 | 
					
						
							|  |  |  |     float* in;                     // input buffer
 | 
					
						
							|  |  |  |     float* out;                    // output buffer
 | 
					
						
							|  |  |  |     int rate;                       // sample rate
 | 
					
						
							|  |  |  |     double abs_low_freq;            // lowest positive freq supported by SNB
 | 
					
						
							|  |  |  |     double abs_high_freq;           // highest positive freq supported by SNG
 | 
					
						
							| 
									
										
										
										
											2024-07-24 23:11:29 +02:00
										 |  |  |     double f_low;                   // low cutoff frequency
 | 
					
						
							|  |  |  |     double f_high;                  // high cutoff frequency
 | 
					
						
							| 
									
										
										
										
											2024-08-02 08:01:46 +02:00
										 |  |  |     std::vector<float> buff;        // internal buffer
 | 
					
						
							| 
									
										
										
										
											2024-07-03 00:52:16 +02:00
										 |  |  |     int wintype;                    // filter window type
 | 
					
						
							|  |  |  |     double gain;                    // filter gain
 | 
					
						
							|  |  |  |     int autoincr;                   // use auto increment for notch width
 | 
					
						
							|  |  |  |     int maxpb;                      // maximum passband segments supported
 | 
					
						
							| 
									
										
										
										
											2024-07-24 23:11:29 +02:00
										 |  |  |     NOTCHDB* notchdb;               // pointer to address of NOTCH DATABASE
 | 
					
						
							|  |  |  |     NBP *bpsnba;                     // pointer to the notched bandpass filter, nbp
 | 
					
						
							| 
									
										
										
										
											2024-07-03 00:52:16 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-24 23:11:29 +02:00
										 |  |  |     BPSNBA( | 
					
						
							| 
									
										
										
										
											2024-07-03 00:52:16 +02:00
										 |  |  |         int run, | 
					
						
							|  |  |  |         int run_notches, | 
					
						
							|  |  |  |         int position, | 
					
						
							|  |  |  |         int size, | 
					
						
							|  |  |  |         int nc, | 
					
						
							|  |  |  |         int mp, | 
					
						
							|  |  |  |         float* in, | 
					
						
							|  |  |  |         float* out, | 
					
						
							|  |  |  |         int rate, | 
					
						
							|  |  |  |         double abs_low_freq, | 
					
						
							|  |  |  |         double abs_high_freq, | 
					
						
							|  |  |  |         double f_low, | 
					
						
							|  |  |  |         double f_high, | 
					
						
							|  |  |  |         int wintype, | 
					
						
							|  |  |  |         double gain, | 
					
						
							|  |  |  |         int autoincr, | 
					
						
							|  |  |  |         int maxpb, | 
					
						
							| 
									
										
										
										
											2024-07-24 23:11:29 +02:00
										 |  |  |         NOTCHDB* notchdb | 
					
						
							| 
									
										
										
										
											2024-07-03 00:52:16 +02:00
										 |  |  |     ); | 
					
						
							| 
									
										
										
										
											2024-07-28 11:36:45 +02:00
										 |  |  |     BPSNBA(const BPSNBA&) = delete; | 
					
						
							| 
									
										
										
										
											2024-07-29 08:57:02 +02:00
										 |  |  |     BPSNBA& operator=(BPSNBA& other) = delete; | 
					
						
							| 
									
										
										
										
											2024-07-24 23:11:29 +02:00
										 |  |  |     ~BPSNBA(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     void flush(); | 
					
						
							|  |  |  |     void setBuffers(float* in, float* out); | 
					
						
							|  |  |  |     void setSamplerate(int rate); | 
					
						
							|  |  |  |     void setSize(int size); | 
					
						
							|  |  |  |     void exec_in(int position); | 
					
						
							|  |  |  |     void exec_out(int position); | 
					
						
							|  |  |  |     void recalc_bpsnba_filter(int update); | 
					
						
							|  |  |  |     // Propertoes
 | 
					
						
							|  |  |  |     void SetNC(int nc); | 
					
						
							|  |  |  |     void SetMP(int mp); | 
					
						
							| 
									
										
										
										
											2024-07-03 00:52:16 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2024-07-24 23:11:29 +02:00
										 |  |  |     void calc(); | 
					
						
							|  |  |  |     void decalc(); | 
					
						
							| 
									
										
										
										
											2024-07-03 00:52:16 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } // namespace
 |