OpenCPN Partial API docs
Loading...
Searching...
No Matches
comm_drv_n2k_serial.h
1/***************************************************************************
2 *
3 * Project: OpenCPN
4 * Purpose:
5 * Author: David Register, Alec Leamas
6 *
7 ***************************************************************************
8 * Copyright (C) 2022 by David Register, Alec Leamas *
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 * This program is distributed in the hope that it will be useful, *
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
18 * GNU General Public License for more details. *
19 * *
20 * You should have received a copy of the GNU General Public License *
21 * along with this program; if not, write to the *
22 * Free Software Foundation, Inc., *
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
24 **************************************************************************/
25
26#ifndef _COMMDRIVERN2KSERIAL_H
27#define _COMMDRIVERN2KSERIAL_H
28
29#include <atomic>
30
31#include <wx/thread.h>
32
33#include "config.h"
34#include "model/comm_drv_n2k.h"
35#include "model/conn_params.h"
37
38#ifndef __ANDROID__
39#include "serial/serial.h"
40#endif
41
42#define OUT_QUEUE_LENGTH 20
43#define MAX_OUT_QUEUE_MESSAGE_LENGTH 200
44
45#define ESCAPE 0x10
46#define STARTOFTEXT 0x02
47#define ENDOFTEXT 0x03
48
49#define MsgTypeN2kData 0x93
50#define MsgTypeN2kRequest 0x94
51using namespace std::literals::chrono_literals;
52
53class CommDriverN2KSerialThread; // fwd
55
57 public wxEvtHandler,
58 public DriverStatsProvider {
59public:
61 CommDriverN2KSerial(const ConnectionParams* params, DriverListener& listener);
62
63 virtual ~CommDriverN2KSerial();
64
65 void SetListener(DriverListener& l) override {};
66
67 bool Open();
68 void Close();
69
70 bool SendMessage(std::shared_ptr<const NavMsg> msg,
71 std::shared_ptr<const NavAddr> addr) override;
72
73 void AddTxPGN(int pgn);
74
75 int SetTXPGN(int pgn) override;
76
77 // Secondary thread life toggle
78 // Used to inform launching object (this) to determine if the thread can
79 // be safely called or polled, e.g. wxThread->Destroy();
80 void SetSecThreadActive(void) { m_bsec_thread_active = true; }
81 void SetSecThreadInActive(void) { m_bsec_thread_active = false; }
82 bool IsSecThreadActive() const { return m_bsec_thread_active; }
83
84 void SetSecondaryThread(CommDriverN2KSerialThread* secondary_Thread) {
85 m_pSecondary_Thread = secondary_Thread;
86 }
87 CommDriverN2KSerialThread* GetSecondaryThread() {
88 return m_pSecondary_Thread;
89 }
90 void SetThreadRunFlag(int run) { m_Thread_run_flag = run; }
91
92 void handle_N2K_SERIAL_RAW(CommDriverN2KSerialEvent& event);
93 int GetMfgCode();
94
95 DriverStats GetDriverStats() const;
96
97 std::atomic_int m_Thread_run_flag;
98 ConnectionParams m_params;
99
100private:
101 void ProcessManagementPacket(std::vector<unsigned char>* payload);
107 int SendMgmtMsg(unsigned char* string, size_t string_size,
108 unsigned char cmd_code, int timeout_msec,
109 bool* response_flag);
110
111 bool m_bok;
112 std::string m_portstring;
113 std::string m_BaudRate;
114 int m_handshake;
115
116 CommDriverN2KSerialThread* m_pSecondary_Thread;
117 bool m_bsec_thread_active;
118
119 DriverListener& m_listener;
120
121 bool m_bmg47_resp;
122 bool m_bmg01_resp;
123 bool m_bmg4B_resp;
124 bool m_bmg41_resp;
125 bool m_bmg42_resp;
126
127 std::string m_device_common_name;
128 uint64_t NAME;
129 int m_manufacturers_code;
130 bool m_got_mfg_code;
131 StatsTimer m_stats_timer;
132 DriverStats m_driver_stats;
133 std::vector<int> pgn_tx_list;
134};
135
136#endif // guard
void SetListener(DriverListener &l) override
Set the entity which will receive incoming data.
Interface implemented by transport layer and possible other parties like test code which should handl...
Definition comm_driver.h:48
Driver interface providing driver statistics.
Continuously report driver stats to CommDrvRegistry.evt_driver_stats.
Communication statistics infrastructure.
Driver statistics report.