| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | // Copyright (C) 2018-2019 Edouard Griffiths, F4EXB.                             //
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | //                                                                               //
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | // Remote sink channel (Rx) UDP sender thread                                    //
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | //                                                                               //
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | // SDRangel can work as a detached SDR front end. With this plugin it can        //
 | 
					
						
							|  |  |  | // sends the I/Q samples stream to another SDRangel instance via UDP.            //
 | 
					
						
							|  |  |  | // It is controlled via a Web REST API.                                          //
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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 06:39:30 +02:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02: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/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | #ifndef INCLUDE_REMOTECHANNELSINKSETTINGS_H_
 | 
					
						
							|  |  |  | #define INCLUDE_REMOTECHANNELSINKSETTINGS_H_
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <QByteArray>
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | #include <QString>
 | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | class Serializable; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | struct RemoteSinkSettings | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     uint16_t m_nbFECBlocks; | 
					
						
							| 
									
										
										
										
											2021-12-19 13:15:17 +01:00
										 |  |  |     uint32_t m_nbTxBytes; | 
					
						
							| 
									
										
										
										
											2021-12-23 16:27:19 +01:00
										 |  |  |     quint64 m_deviceCenterFrequency; | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  |     QString  m_dataAddress; | 
					
						
							|  |  |  |     uint16_t m_dataPort; | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  |     quint32 m_rgbColor; | 
					
						
							|  |  |  |     QString m_title; | 
					
						
							| 
									
										
										
										
											2019-04-25 15:48:47 +02:00
										 |  |  |     uint32_t m_log2Decim; | 
					
						
							|  |  |  |     uint32_t m_filterChainHash; | 
					
						
							| 
									
										
										
										
											2019-09-23 01:25:17 +02:00
										 |  |  |     int m_streamIndex; //!< MIMO channel. Not relevant when connected to SI (single Rx).
 | 
					
						
							| 
									
										
										
										
											2018-12-21 17:39:04 +01:00
										 |  |  |     bool m_useReverseAPI; | 
					
						
							|  |  |  |     QString m_reverseAPIAddress; | 
					
						
							|  |  |  |     uint16_t m_reverseAPIPort; | 
					
						
							|  |  |  |     uint16_t m_reverseAPIDeviceIndex; | 
					
						
							|  |  |  |     uint16_t m_reverseAPIChannelIndex; | 
					
						
							| 
									
										
										
										
											2022-04-12 16:20:45 +02:00
										 |  |  |     int m_workspaceIndex; | 
					
						
							|  |  |  |     QByteArray m_geometryBytes; | 
					
						
							| 
									
										
										
										
											2022-04-12 18:27:27 +02:00
										 |  |  |     bool m_hidden; | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     Serializable *m_channelMarker; | 
					
						
							| 
									
										
										
										
											2022-01-09 05:27:12 +01:00
										 |  |  |     Serializable *m_rollupState; | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  |     RemoteSinkSettings(); | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  |     void resetToDefaults(); | 
					
						
							| 
									
										
										
										
											2018-09-05 08:44:14 +02:00
										 |  |  |     void setChannelMarker(Serializable *channelMarker) { m_channelMarker = channelMarker; } | 
					
						
							| 
									
										
										
										
											2022-01-09 05:27:12 +01:00
										 |  |  |     void setRollupState(Serializable *rollupState) { m_rollupState = rollupState; } | 
					
						
							| 
									
										
										
										
											2018-09-05 01:32:29 +02:00
										 |  |  |     QByteArray serialize() const; | 
					
						
							|  |  |  |     bool deserialize(const QByteArray& data); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 23:39:12 +01:00
										 |  |  | #endif /* INCLUDE_REMOTECHANNELSINKSETTINGS_H_ */
 |