| 
									
										
										
										
											2024-06-16 09:31:13 +00:00
										 |  |  | /*  firmin.c
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | This file is part of a program that implements a Software-Defined Radio. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Copyright (C) 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 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "comm.hpp"
 | 
					
						
							|  |  |  | #include "fir.hpp"
 | 
					
						
							|  |  |  | #include "firmin.hpp"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace WDSP { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /********************************************************************************************************
 | 
					
						
							|  |  |  | *                                                                                                       * | 
					
						
							|  |  |  | *                                           Time-Domain FIR                                             * | 
					
						
							|  |  |  | *                                                                                                       * | 
					
						
							|  |  |  | ********************************************************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-10 04:40:35 +00:00
										 |  |  | void FIRMIN::calc() | 
					
						
							| 
									
										
										
										
											2024-06-16 09:31:13 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-08-10 04:40:35 +00:00
										 |  |  |     FIR::fir_bandpass (h, nc, f_low, f_high, samplerate, wintype, 1, gain); | 
					
						
							|  |  |  |     rsize = nc; | 
					
						
							|  |  |  |     mask = rsize - 1; | 
					
						
							|  |  |  |     ring.resize(rsize * 2); | 
					
						
							|  |  |  |     idx = 0; | 
					
						
							| 
									
										
										
										
											2024-06-16 09:31:13 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-10 04:40:35 +00:00
										 |  |  | FIRMIN::FIRMIN( | 
					
						
							|  |  |  |     int _run, | 
					
						
							|  |  |  |     int _position, | 
					
						
							|  |  |  |     int _size, | 
					
						
							|  |  |  |     float* _in, | 
					
						
							|  |  |  |     float* _out, | 
					
						
							|  |  |  |     int _nc, | 
					
						
							|  |  |  |     float _f_low, | 
					
						
							|  |  |  |     float _f_high, | 
					
						
							|  |  |  |     int _samplerate, | 
					
						
							|  |  |  |     int _wintype, | 
					
						
							|  |  |  |     float _gain | 
					
						
							|  |  |  | ) | 
					
						
							| 
									
										
										
										
											2024-06-16 09:31:13 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-08-10 04:40:35 +00:00
										 |  |  |     run = _run; | 
					
						
							|  |  |  |     position = _position; | 
					
						
							|  |  |  |     size = _size; | 
					
						
							|  |  |  |     in = _in; | 
					
						
							|  |  |  |     out = _out; | 
					
						
							|  |  |  |     nc = _nc; | 
					
						
							|  |  |  |     f_low = _f_low; | 
					
						
							|  |  |  |     f_high = _f_high; | 
					
						
							|  |  |  |     samplerate = (float) _samplerate; | 
					
						
							|  |  |  |     wintype = _wintype; | 
					
						
							|  |  |  |     gain = _gain; | 
					
						
							|  |  |  |     calc(); | 
					
						
							| 
									
										
										
										
											2024-06-16 09:31:13 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-10 04:40:35 +00:00
										 |  |  | void FIRMIN::flush() | 
					
						
							| 
									
										
										
										
											2024-06-16 09:31:13 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-08-10 04:40:35 +00:00
										 |  |  |     std::fill(ring.begin(), ring.end(), 0); | 
					
						
							|  |  |  |     idx = 0; | 
					
						
							| 
									
										
										
										
											2024-06-16 09:31:13 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-10 04:40:35 +00:00
										 |  |  | void FIRMIN::execute(int _pos) | 
					
						
							| 
									
										
										
										
											2024-06-16 09:31:13 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-08-10 04:40:35 +00:00
										 |  |  |     if (run && position == _pos) | 
					
						
							| 
									
										
										
										
											2024-06-16 09:31:13 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2024-08-10 04:40:35 +00:00
										 |  |  |         int k; | 
					
						
							|  |  |  |         for (int i = 0; i < size; i++) | 
					
						
							| 
									
										
										
										
											2024-06-16 09:31:13 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2024-08-10 04:40:35 +00:00
										 |  |  |             ring[2 * idx + 0] = in[2 * i + 0]; | 
					
						
							|  |  |  |             ring[2 * idx + 1] = in[2 * i + 1]; | 
					
						
							|  |  |  |             out[2 * i + 0] = 0.0; | 
					
						
							|  |  |  |             out[2 * i + 1] = 0.0; | 
					
						
							|  |  |  |             k = idx; | 
					
						
							|  |  |  |             for (int j = 0; j < nc; j++) | 
					
						
							| 
									
										
										
										
											2024-06-16 09:31:13 +00:00
										 |  |  |             { | 
					
						
							| 
									
										
										
										
											2024-08-10 04:40:35 +00:00
										 |  |  |                 out[2 * i + 0] += h[2 * j + 0] * ring[2 * k + 0] - h[2 * j + 1] * ring[2 * k + 1]; | 
					
						
							|  |  |  |                 out[2 * i + 1] += h[2 * j + 0] * ring[2 * k + 1] + h[2 * j + 1] * ring[2 * k + 0]; | 
					
						
							|  |  |  |                 k = (k + mask) & mask; | 
					
						
							| 
									
										
										
										
											2024-06-16 09:31:13 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2024-08-10 04:40:35 +00:00
										 |  |  |             idx = (idx + 1) & mask; | 
					
						
							| 
									
										
										
										
											2024-06-16 09:31:13 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2024-08-10 04:40:35 +00:00
										 |  |  |     else if (in != out) | 
					
						
							|  |  |  |         std::copy( in,  in + size * 2, out); | 
					
						
							| 
									
										
										
										
											2024-06-16 09:31:13 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-10 04:40:35 +00:00
										 |  |  | void FIRMIN::setBuffers(float* _in, float* _out) | 
					
						
							| 
									
										
										
										
											2024-06-16 09:31:13 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-08-10 04:40:35 +00:00
										 |  |  |     in = _in; | 
					
						
							|  |  |  |     out = _out; | 
					
						
							| 
									
										
										
										
											2024-06-16 09:31:13 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-10 04:40:35 +00:00
										 |  |  | void FIRMIN::setSamplerate(int _rate) | 
					
						
							| 
									
										
										
										
											2024-06-16 09:31:13 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-08-10 04:40:35 +00:00
										 |  |  |     samplerate = (float) _rate; | 
					
						
							|  |  |  |     calc(); | 
					
						
							| 
									
										
										
										
											2024-06-16 09:31:13 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-10 04:40:35 +00:00
										 |  |  | void FIRMIN::setSize(int _size) | 
					
						
							| 
									
										
										
										
											2024-06-16 09:31:13 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-08-10 04:40:35 +00:00
										 |  |  |     size = _size; | 
					
						
							| 
									
										
										
										
											2024-06-16 09:31:13 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-10 04:40:35 +00:00
										 |  |  | void FIRMIN::setFreqs(float _f_low, float _f_high) | 
					
						
							| 
									
										
										
										
											2024-06-16 09:31:13 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-08-10 04:40:35 +00:00
										 |  |  |     f_low = _f_low; | 
					
						
							|  |  |  |     f_high = _f_high; | 
					
						
							|  |  |  |     calc(); | 
					
						
							| 
									
										
										
										
											2024-06-16 09:31:13 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } // namespace WDSP
 |