| 
									
										
										
										
											2020-11-09 11:35:18 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2019-2020 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                  //
 | 
					
						
							|  |  |  | // (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 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/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef PLUGINS_CHANNELRX_DEMODCHIRPCHAT_CHIRPCHATDEMODSETTINGS_H_
 | 
					
						
							|  |  |  | #define PLUGINS_CHANNELRX_DEMODCHIRPCHAT_CHIRPCHATDEMODSETTINGS_H_
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <QByteArray>
 | 
					
						
							|  |  |  | #include <QString>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <stdint.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "dsp/fftwindow.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class Serializable; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct ChirpChatDemodSettings | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     enum CodingScheme | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         CodingLoRa,  //!< Standard LoRa
 | 
					
						
							|  |  |  |         CodingASCII, //!< plain ASCII (7 bits)
 | 
					
						
							|  |  |  |         CodingTTY    //!< plain TTY (5 bits)
 | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     int m_inputFrequencyOffset; | 
					
						
							|  |  |  |     int m_bandwidthIndex; | 
					
						
							|  |  |  |     int m_spreadFactor; | 
					
						
							|  |  |  |     int m_deBits;            //!< Low data rate optmize (DE) bits
 | 
					
						
							|  |  |  |     FFTWindow::Function m_fftWindow; | 
					
						
							|  |  |  |     CodingScheme m_codingScheme; | 
					
						
							|  |  |  |     bool m_decodeActive; | 
					
						
							| 
									
										
										
										
											2020-11-14 22:08:06 +01:00
										 |  |  |     int m_eomSquelchTenths;        //!< Squelch factor to trigger end of message (/10)
 | 
					
						
							|  |  |  |     unsigned int m_nbSymbolsMax;   //!< Maximum number of symbols in a payload
 | 
					
						
							|  |  |  |     bool m_autoNbSymbolsMax;       //!< Set maximum number of symbols in a payload automatically using last messag value
 | 
					
						
							|  |  |  |     unsigned int m_preambleChirps; //!< Number of expected preamble chirps
 | 
					
						
							|  |  |  |     int m_nbParityBits;            //!< Hamming parity bits (LoRa)
 | 
					
						
							|  |  |  |     int m_packetLength;            //!< Payload packet length in bytes or characters (LoRa)
 | 
					
						
							|  |  |  |     bool m_hasCRC;                 //!< Payload has CRC (LoRa)
 | 
					
						
							|  |  |  |     bool m_hasHeader;              //!< Header present before actual payload (LoRa)
 | 
					
						
							|  |  |  |     bool m_sendViaUDP;             //!< Send decoded message via UDP
 | 
					
						
							|  |  |  |     QString m_udpAddress;          //!< UDP address where to send message
 | 
					
						
							|  |  |  |     uint16_t m_udpPort;            //!< UDP port where to send message
 | 
					
						
							| 
									
										
										
										
											2020-11-09 11:35:18 +01:00
										 |  |  |     uint32_t m_rgbColor; | 
					
						
							|  |  |  |     QString m_title; | 
					
						
							|  |  |  |     int m_streamIndex; | 
					
						
							|  |  |  |     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; | 
					
						
							| 
									
										
										
										
											2020-11-09 11:35:18 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     Serializable *m_channelMarker; | 
					
						
							|  |  |  |     Serializable *m_spectrumGUI; | 
					
						
							| 
									
										
										
										
											2022-01-09 05:27:12 +01:00
										 |  |  |     Serializable *m_rollupState; | 
					
						
							| 
									
										
										
										
											2020-11-09 11:35:18 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     static const int bandwidths[]; | 
					
						
							|  |  |  |     static const int nbBandwidths; | 
					
						
							|  |  |  |     static const int oversampling; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ChirpChatDemodSettings(); | 
					
						
							|  |  |  |     void resetToDefaults(); | 
					
						
							|  |  |  |     void setChannelMarker(Serializable *channelMarker) { m_channelMarker = channelMarker; } | 
					
						
							| 
									
										
										
										
											2022-01-09 05:27:12 +01:00
										 |  |  |     void setRollupState(Serializable *rollupState) { m_rollupState = rollupState; } | 
					
						
							| 
									
										
										
										
											2020-11-09 11:35:18 +01:00
										 |  |  |     void setSpectrumGUI(Serializable *spectrumGUI) { m_spectrumGUI = spectrumGUI; } | 
					
						
							|  |  |  |     unsigned int getNbSFDFourths() const; //!< Get the number of SFD period fourths (depends on coding scheme)
 | 
					
						
							|  |  |  |     bool hasSyncWord() const;             //!< Only LoRa has a syncword (for the moment)
 | 
					
						
							|  |  |  |     QByteArray serialize() const; | 
					
						
							|  |  |  |     bool deserialize(const QByteArray& data); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* PLUGINS_CHANNELRX_DEMODCHIRPCHAT_CHIRPCHATDEMODSETTINGS_H_ */
 |