| 
									
										
										
										
											2020-10-27 16:22:10 +00:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2020 Jon Beniston, M7RCE                                        //
 | 
					
						
							|  |  |  | // Copyright (C) 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 INCLUDE_FEATURE_GS232CONTROLLERWORKER_H_
 | 
					
						
							|  |  |  | #define INCLUDE_FEATURE_GS232CONTROLLERWORKER_H_
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <QObject>
 | 
					
						
							|  |  |  | #include <QTimer>
 | 
					
						
							|  |  |  | #include <QSerialPort>
 | 
					
						
							| 
									
										
										
										
											2021-11-23 12:13:24 +00:00
										 |  |  | #include <QTcpSocket>
 | 
					
						
							| 
									
										
										
										
											2020-10-27 16:22:10 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "util/message.h"
 | 
					
						
							|  |  |  | #include "util/messagequeue.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "gs232controllersettings.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class GS232ControllerWorker : public QObject | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Q_OBJECT | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     class MsgConfigureGS232ControllerWorker : public Message { | 
					
						
							|  |  |  |         MESSAGE_CLASS_DECLARATION | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public: | 
					
						
							|  |  |  |         const GS232ControllerSettings& getSettings() const { return m_settings; } | 
					
						
							|  |  |  |         bool getForce() const { return m_force; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         static MsgConfigureGS232ControllerWorker* create(const GS232ControllerSettings& settings, bool force) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             return new MsgConfigureGS232ControllerWorker(settings, force); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     private: | 
					
						
							|  |  |  |         GS232ControllerSettings m_settings; | 
					
						
							|  |  |  |         bool m_force; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         MsgConfigureGS232ControllerWorker(const GS232ControllerSettings& settings, bool force) : | 
					
						
							|  |  |  |             Message(), | 
					
						
							|  |  |  |             m_settings(settings), | 
					
						
							|  |  |  |             m_force(force) | 
					
						
							|  |  |  |         { } | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-13 19:44:53 +00:00
										 |  |  |     GS232ControllerWorker(); | 
					
						
							| 
									
										
										
										
											2020-10-27 16:22:10 +00:00
										 |  |  |     ~GS232ControllerWorker(); | 
					
						
							|  |  |  |     void reset(); | 
					
						
							|  |  |  |     bool startWork(); | 
					
						
							|  |  |  |     void stopWork(); | 
					
						
							|  |  |  |     bool isRunning() const { return m_running; } | 
					
						
							|  |  |  |     MessageQueue *getInputMessageQueue() { return &m_inputMessageQueue; } | 
					
						
							|  |  |  |     void setMessageQueueToFeature(MessageQueue *messageQueue) { m_msgQueueToFeature = messageQueue; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     MessageQueue m_inputMessageQueue;  //!< Queue for asynchronous inbound communication
 | 
					
						
							|  |  |  |     MessageQueue *m_msgQueueToFeature; //!< Queue to report channel change to main feature object
 | 
					
						
							|  |  |  |     GS232ControllerSettings m_settings; | 
					
						
							|  |  |  |     bool m_running; | 
					
						
							|  |  |  |     QMutex m_mutex; | 
					
						
							| 
									
										
										
										
											2021-11-23 12:13:24 +00:00
										 |  |  |     QIODevice *m_device; | 
					
						
							| 
									
										
										
										
											2020-10-27 16:22:10 +00:00
										 |  |  |     QSerialPort m_serialPort; | 
					
						
							| 
									
										
										
										
											2021-11-23 12:13:24 +00:00
										 |  |  |     QTcpSocket m_socket; | 
					
						
							| 
									
										
										
										
											2020-10-27 16:22:10 +00:00
										 |  |  |     QTimer m_pollTimer; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-30 12:38:07 +01:00
										 |  |  |     float m_lastAzimuth; | 
					
						
							|  |  |  |     float m_lastElevation; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     bool m_spidSetOutstanding; | 
					
						
							|  |  |  |     bool m_spidSetSent; | 
					
						
							|  |  |  |     bool m_spidStatusSent; | 
					
						
							| 
									
										
										
										
											2021-02-26 20:27:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-23 12:13:24 +00:00
										 |  |  |     bool m_rotCtlDReadAz;               //!< rotctrld returns 'p' responses over two lines
 | 
					
						
							|  |  |  |     QString m_rotCtlDAz; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-27 16:22:10 +00:00
										 |  |  |     bool handleMessage(const Message& cmd); | 
					
						
							|  |  |  |     void applySettings(const GS232ControllerSettings& settings, bool force = false); | 
					
						
							| 
									
										
										
										
											2021-11-23 12:13:24 +00:00
										 |  |  |     QIODevice *openSerialPort(const GS232ControllerSettings& settings); | 
					
						
							|  |  |  |     QIODevice *openSocket(const GS232ControllerSettings& settings); | 
					
						
							| 
									
										
										
										
											2021-05-30 12:38:07 +01:00
										 |  |  |     void setAzimuth(float azimuth); | 
					
						
							|  |  |  |     void setAzimuthElevation(float azimuth, float elevation); | 
					
						
							| 
									
										
										
										
											2020-10-27 16:22:10 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | private slots: | 
					
						
							|  |  |  |     void handleInputMessages(); | 
					
						
							| 
									
										
										
										
											2021-11-23 12:13:24 +00:00
										 |  |  |     void readData(); | 
					
						
							| 
									
										
										
										
											2020-10-27 16:22:10 +00:00
										 |  |  |     void update(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif // INCLUDE_FEATURE_GS232CONTROLLERWORKER_H_
 |