| 
									
										
										
										
											2018-11-19 01:33:44 +00:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2015-2018 Edouard Griffiths, F4EXB                              //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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 as version 3 of the License, or                  //
 | 
					
						
							| 
									
										
										
										
											2019-04-11 04:39:30 +00:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											2018-11-19 01:33:44 +00:00
										 |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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 V3 for more details.                               //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // You should have received a copy of the GNU General Public License             //
 | 
					
						
							|  |  |  | // along with this program. If not, see <http://www.gnu.org/licenses/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2015-09-05 03:50:29 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifndef FCDLIB_FCDTRAITS_H_
 | 
					
						
							|  |  |  | #define FCDLIB_FCDTRAITS_H_
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <inttypes.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef enum | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Pro, | 
					
						
							|  |  |  |     ProPlus | 
					
						
							|  |  |  | } fcd_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template <fcd_type FCDType> | 
					
						
							|  |  |  | struct fcd_traits | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	static const uint16_t vendorId = 0x0; | 
					
						
							|  |  |  | 	static const uint16_t productId = 0x0; | 
					
						
							|  |  |  | 	static const int sampleRate = 48000; | 
					
						
							|  |  |  | 	static const int convBufSize = (1<<11); | 
					
						
							|  |  |  | 	static const char *alsaDeviceName; | 
					
						
							| 
									
										
										
										
											2018-11-19 01:33:44 +00:00
										 |  |  | 	static const char *qtDeviceName; | 
					
						
							| 
									
										
										
										
											2016-12-29 11:41:10 +00:00
										 |  |  |     static const char *hardwareID; | 
					
						
							| 
									
										
										
										
											2015-09-05 03:50:29 +00:00
										 |  |  |     static const char *interfaceIID; | 
					
						
							|  |  |  |     static const char *displayedName; | 
					
						
							|  |  |  |     static const char *pluginDisplayedName; | 
					
						
							|  |  |  |     static const char *pluginVersion; | 
					
						
							| 
									
										
										
										
											2017-09-25 18:16:25 +00:00
										 |  |  |     static const int64_t loLowLimitFreq; | 
					
						
							|  |  |  |     static const int64_t loHighLimitFreq; | 
					
						
							| 
									
										
										
										
											2015-09-05 03:50:29 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template<> | 
					
						
							|  |  |  | struct fcd_traits<Pro> | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	static const uint16_t vendorId = 0x04D8; | 
					
						
							|  |  |  | 	static const uint16_t productId = 0xFB56; | 
					
						
							|  |  |  | 	static const int sampleRate = 96000; | 
					
						
							|  |  |  | 	static const int convBufSize = (1<<11); | 
					
						
							|  |  |  | 	static const char *alsaDeviceName; | 
					
						
							| 
									
										
										
										
											2018-11-19 01:33:44 +00:00
										 |  |  |     static const char *qtDeviceName; | 
					
						
							| 
									
										
										
										
											2016-12-29 11:41:10 +00:00
										 |  |  |     static const char *hardwareID; | 
					
						
							| 
									
										
										
										
											2015-09-05 03:50:29 +00:00
										 |  |  |     static const char *interfaceIID; | 
					
						
							|  |  |  |     static const char *displayedName; | 
					
						
							|  |  |  |     static const char *pluginDisplayedName; | 
					
						
							|  |  |  |     static const char *pluginVersion; | 
					
						
							| 
									
										
										
										
											2017-09-25 18:16:25 +00:00
										 |  |  |     static const int64_t loLowLimitFreq; | 
					
						
							|  |  |  |     static const int64_t loHighLimitFreq; | 
					
						
							| 
									
										
										
										
											2015-09-05 03:50:29 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template<> | 
					
						
							|  |  |  | struct fcd_traits<ProPlus> | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	static const uint16_t vendorId = 0x04D8; | 
					
						
							|  |  |  | 	static const uint16_t productId = 0xFB31; | 
					
						
							|  |  |  | 	static const int sampleRate = 192000; | 
					
						
							| 
									
										
										
										
											2018-11-19 01:33:44 +00:00
										 |  |  | 	static const int convBufSize = (1<<10); | 
					
						
							| 
									
										
										
										
											2015-09-05 03:50:29 +00:00
										 |  |  | 	static const char *alsaDeviceName; | 
					
						
							| 
									
										
										
										
											2018-11-19 01:33:44 +00:00
										 |  |  |     static const char *qtDeviceName; | 
					
						
							| 
									
										
										
										
											2016-12-29 11:41:10 +00:00
										 |  |  |     static const char *hardwareID; | 
					
						
							| 
									
										
										
										
											2015-09-05 03:50:29 +00:00
										 |  |  |     static const char *interfaceIID; | 
					
						
							|  |  |  |     static const char *displayedName; | 
					
						
							|  |  |  |     static const char *pluginDisplayedName; | 
					
						
							|  |  |  |     static const char *pluginVersion; | 
					
						
							| 
									
										
										
										
											2017-09-25 18:16:25 +00:00
										 |  |  |     static const int64_t loLowLimitFreq; | 
					
						
							|  |  |  |     static const int64_t loHighLimitFreq; | 
					
						
							| 
									
										
										
										
											2015-09-05 03:50:29 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template <fcd_type FCDType> const char *fcd_traits<FCDType>::alsaDeviceName = ""; | 
					
						
							| 
									
										
										
										
											2016-12-29 11:41:10 +00:00
										 |  |  | template <fcd_type FCDType> const char *fcd_traits<FCDType>::hardwareID = ""; | 
					
						
							| 
									
										
										
										
											2015-09-05 03:50:29 +00:00
										 |  |  | template <fcd_type FCDType> const char *fcd_traits<FCDType>::interfaceIID = ""; | 
					
						
							|  |  |  | template <fcd_type FCDType> const char *fcd_traits<FCDType>::displayedName = ""; | 
					
						
							|  |  |  | template <fcd_type FCDType> const char *fcd_traits<FCDType>::pluginDisplayedName = ""; | 
					
						
							|  |  |  | template <fcd_type FCDType> const char *fcd_traits<FCDType>::pluginVersion = "---"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* FCDLIB_FCDTRAITS_H_ */
 |