| 
									
										
										
										
											2016-12-09 01:35:49 +01:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2016 F4EXB                                                      //
 | 
					
						
							|  |  |  | // written by Edouard Griffiths                                                  //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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 14:32:15 +02:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											2016-12-09 01:35:49 +01: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/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef SDRBASE_DSP_CWKEYER_H_
 | 
					
						
							|  |  |  | #define SDRBASE_DSP_CWKEYER_H_
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <QObject>
 | 
					
						
							| 
									
										
										
										
											2022-09-15 21:59:42 +02:00
										 |  |  | #include <QRecursiveMutex>
 | 
					
						
							| 
									
										
										
										
											2016-12-11 11:35:25 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-20 13:49:21 +01:00
										 |  |  | #include "export.h"
 | 
					
						
							| 
									
										
										
										
											2017-12-11 18:18:47 +01:00
										 |  |  | #include "util/message.h"
 | 
					
						
							| 
									
										
										
										
											2019-07-30 01:31:46 +02:00
										 |  |  | #include "util/messagequeue.h"
 | 
					
						
							| 
									
										
										
										
											2017-12-10 20:27:08 +01:00
										 |  |  | #include "cwkeyersettings.h"
 | 
					
						
							| 
									
										
										
										
											2019-07-30 13:12:15 +02:00
										 |  |  | #include "SWGChannelSettings.h"
 | 
					
						
							| 
									
										
										
										
											2016-12-09 01:35:49 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 05:00:23 +02:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * Ancillary class to smooth out CW transitions with a sine shape | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-03-03 20:23:38 +01:00
										 |  |  | class SDRBASE_API CWSmoother | 
					
						
							| 
									
										
										
										
											2017-10-21 05:00:23 +02:00
										 |  |  | { | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     CWSmoother(); | 
					
						
							|  |  |  |     ~CWSmoother(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     void setNbFadeSamples(unsigned int nbFadeSamples); | 
					
						
							|  |  |  |     bool getFadeSample(bool on, float& sample); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2022-09-15 21:59:42 +02:00
										 |  |  |     QRecursiveMutex m_mutex; | 
					
						
							| 
									
										
										
										
											2017-10-21 05:00:23 +02:00
										 |  |  |     unsigned int m_fadeInCounter; | 
					
						
							|  |  |  |     unsigned int m_fadeOutCounter; | 
					
						
							|  |  |  |     unsigned int m_nbFadeSamples; | 
					
						
							|  |  |  |     float *m_fadeInSamples; | 
					
						
							|  |  |  |     float *m_fadeOutSamples; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-03 20:23:38 +01:00
										 |  |  | class SDRBASE_API CWKeyer : public QObject { | 
					
						
							| 
									
										
										
										
											2016-12-09 01:35:49 +01:00
										 |  |  |     Q_OBJECT | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2018-11-13 17:29:34 +01:00
										 |  |  |     class SDRBASE_API MsgConfigureCWKeyer : public Message { | 
					
						
							| 
									
										
										
										
											2017-12-11 18:18:47 +01:00
										 |  |  |         MESSAGE_CLASS_DECLARATION | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public: | 
					
						
							|  |  |  |         const CWKeyerSettings& getSettings() const { return m_settings; } | 
					
						
							|  |  |  |         bool getForce() const { return m_force; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         static MsgConfigureCWKeyer* create(const CWKeyerSettings& settings, bool force) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             return new MsgConfigureCWKeyer(settings, force); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     private: | 
					
						
							|  |  |  |         CWKeyerSettings m_settings; | 
					
						
							|  |  |  |         bool m_force; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         MsgConfigureCWKeyer(const CWKeyerSettings& settings, bool force) : | 
					
						
							|  |  |  |             Message(), | 
					
						
							|  |  |  |             m_settings(settings), | 
					
						
							|  |  |  |             m_force(force) | 
					
						
							|  |  |  |         { } | 
					
						
							|  |  |  |     }; | 
					
						
							| 
									
										
										
										
											2016-12-09 01:35:49 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-30 01:31:46 +02:00
										 |  |  |     enum CWKeyIambicState | 
					
						
							| 
									
										
										
										
											2016-12-09 01:35:49 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         KeySilent, | 
					
						
							|  |  |  |         KeyDot, | 
					
						
							|  |  |  |         KeyDash | 
					
						
							| 
									
										
										
										
											2019-07-30 01:31:46 +02:00
										 |  |  |     }; | 
					
						
							| 
									
										
										
										
											2016-12-09 19:34:38 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-30 01:31:46 +02:00
										 |  |  |     enum CWTextState | 
					
						
							| 
									
										
										
										
											2016-12-09 19:34:38 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |     	TextStart, | 
					
						
							|  |  |  | 		TextStartChar, | 
					
						
							|  |  |  | 		TextStartElement, | 
					
						
							|  |  |  | 		TextElement, | 
					
						
							|  |  |  | 		TextCharSpace, | 
					
						
							|  |  |  | 		TextWordSpace, | 
					
						
							| 
									
										
										
										
											2016-12-11 11:35:25 +01:00
										 |  |  | 		TextEnd, | 
					
						
							|  |  |  | 		TextStop | 
					
						
							| 
									
										
										
										
											2019-07-30 01:31:46 +02:00
										 |  |  |     }; | 
					
						
							| 
									
										
										
										
											2016-12-09 01:35:49 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     CWKeyer(); | 
					
						
							|  |  |  |     ~CWKeyer(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-11 11:35:25 +01:00
										 |  |  |     void resetToDefaults(); | 
					
						
							|  |  |  |     QByteArray serialize() const; | 
					
						
							|  |  |  |     bool deserialize(const QByteArray& data); | 
					
						
							| 
									
										
										
										
											2019-07-30 01:31:46 +02:00
										 |  |  |     MessageQueue *getInputMessageQueue() { return &m_inputMessageQueue; } //!< Get the queue for asynchronous inbound communication
 | 
					
						
							| 
									
										
										
										
											2016-12-11 11:35:25 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     void setSampleRate(int sampleRate); | 
					
						
							| 
									
										
										
										
											2017-12-10 20:27:08 +01:00
										 |  |  |     const CWKeyerSettings& getSettings() const { return m_settings; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 11:37:57 +01:00
										 |  |  |     void reset() { m_keyIambicState = KeySilent; } | 
					
						
							| 
									
										
										
										
											2016-12-09 01:35:49 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 05:00:23 +02:00
										 |  |  |     CWSmoother& getCWSmoother() { return m_cwSmoother; } | 
					
						
							| 
									
										
										
										
											2016-12-09 01:35:49 +01:00
										 |  |  |     int getSample(); | 
					
						
							|  |  |  |     bool eom(); | 
					
						
							| 
									
										
										
										
											2016-12-10 08:12:16 +01:00
										 |  |  |     void resetText() { m_textState = TextStart; } | 
					
						
							| 
									
										
										
										
											2016-12-11 11:35:25 +01:00
										 |  |  |     void stopText() { m_textState = TextStop; } | 
					
						
							| 
									
										
										
										
											2019-07-30 09:27:55 +02:00
										 |  |  |     void setKeyboardDots(); | 
					
						
							|  |  |  |     void setKeyboardDashes(); | 
					
						
							|  |  |  |     void setKeyboardSilence(); | 
					
						
							| 
									
										
										
										
											2016-12-09 01:35:49 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-01 02:34:50 +02:00
										 |  |  |     static void webapiSettingsPutPatch( | 
					
						
							| 
									
										
										
										
											2019-07-30 13:12:15 +02:00
										 |  |  |         const QStringList& channelSettingsKeys, | 
					
						
							|  |  |  |         CWKeyerSettings& cwKeyerSettings, | 
					
						
							|  |  |  |         SWGSDRangel::SWGCWKeyerSettings *apiCwKeyerSettings | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-01 02:34:50 +02:00
										 |  |  |     static void webapiFormatChannelSettings( | 
					
						
							| 
									
										
										
										
											2019-07-30 13:12:15 +02:00
										 |  |  |         SWGSDRangel::SWGCWKeyerSettings *apiCwKeyerSettings, | 
					
						
							|  |  |  |         const CWKeyerSettings& cwKeyerSettings | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-09 01:35:49 +01:00
										 |  |  | private: | 
					
						
							| 
									
										
										
										
											2022-09-15 21:59:42 +02:00
										 |  |  |     QRecursiveMutex m_mutex; | 
					
						
							| 
									
										
										
										
											2017-12-10 20:27:08 +01:00
										 |  |  |     CWKeyerSettings m_settings; | 
					
						
							| 
									
										
										
										
											2019-07-30 01:31:46 +02:00
										 |  |  |     MessageQueue m_inputMessageQueue; | 
					
						
							| 
									
										
										
										
											2016-12-09 01:35:49 +01:00
										 |  |  |     int m_dotLength;   //!< dot length in samples
 | 
					
						
							|  |  |  |     int m_textPointer; | 
					
						
							|  |  |  |     int m_elementPointer; | 
					
						
							| 
									
										
										
										
											2016-12-09 19:34:38 +01:00
										 |  |  |     int m_samplePointer; | 
					
						
							| 
									
										
										
										
											2016-12-09 01:35:49 +01:00
										 |  |  |     bool m_elementSpace; | 
					
						
							|  |  |  |     bool m_characterSpace; | 
					
						
							|  |  |  |     bool m_key; | 
					
						
							|  |  |  |     bool m_dot; | 
					
						
							|  |  |  |     bool m_dash; | 
					
						
							|  |  |  |     bool m_elementOn; | 
					
						
							| 
									
										
										
										
											2018-08-13 22:10:42 +02:00
										 |  |  |     signed char m_asciiChar; | 
					
						
							| 
									
										
										
										
											2016-12-09 19:34:38 +01:00
										 |  |  |     CWKeyIambicState m_keyIambicState; | 
					
						
							|  |  |  |     CWTextState m_textState; | 
					
						
							| 
									
										
										
										
											2017-10-21 05:00:23 +02:00
										 |  |  |     CWSmoother m_cwSmoother; | 
					
						
							| 
									
										
										
										
											2016-12-09 01:35:49 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-25 00:16:44 +02:00
										 |  |  |     static const signed char m_asciiToMorse[128][7]; | 
					
						
							| 
									
										
										
										
											2016-12-09 19:34:38 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-30 01:31:46 +02:00
										 |  |  |     void applySettings(const CWKeyerSettings& settings, bool force = false); | 
					
						
							|  |  |  |     bool handleMessage(const Message& cmd); | 
					
						
							| 
									
										
										
										
											2016-12-09 19:34:38 +01:00
										 |  |  |     void nextStateIambic(); | 
					
						
							|  |  |  |     void nextStateText(); | 
					
						
							| 
									
										
										
										
											2019-07-30 01:31:46 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | private slots: | 
					
						
							|  |  |  |     void handleInputMessages(); | 
					
						
							| 
									
										
										
										
											2016-12-09 01:35:49 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* SDRBASE_DSP_CWKEYER_H_ */
 |