MMDVMHost/AX25Control.h

57 lines
1.7 KiB
C
Raw Permalink Normal View History

2020-12-15 17:21:07 +01:00
/*
2023-01-18 21:56:37 +01:00
* Copyright (C) 2020,2023 by Jonathan Naylor G4KLX
2020-12-15 17:21:07 +01: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; either version 2 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 for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#if !defined(AX25Control_H)
#define AX25Control_H
2023-08-04 17:12:38 +02:00
#include "RSSIInterpolator.h"
2020-12-15 17:21:07 +01:00
#include "AX25Network.h"
2023-06-29 12:59:52 +02:00
#include "Defines.h"
#if defined(USE_AX25)
2020-12-15 17:21:07 +01:00
#include <string>
class CAX25Control {
public:
2023-08-04 17:12:38 +02:00
CAX25Control(CAX25Network* network, bool trace, CRSSIInterpolator* rssiMapper);
2020-12-15 17:21:07 +01:00
~CAX25Control();
bool writeModem(unsigned char* data, unsigned int len);
unsigned int readModem(unsigned char* data);
void enable(bool enabled);
private:
2023-08-04 17:12:38 +02:00
CAX25Network* m_network;
bool m_trace;
CRSSIInterpolator* m_rssiMapper;
bool m_enabled;
2020-12-15 17:21:07 +01:00
void decode(const unsigned char* data, unsigned int length);
2023-08-04 17:12:38 +02:00
void decodeJSON(const char* source, const unsigned char* data, unsigned int length, int rssi = 0);
2020-12-15 17:21:07 +01:00
bool decodeAddress(const unsigned char* data, std::string& text, bool isDigi = false) const;
2023-01-18 21:56:37 +01:00
bool decodeAddressJSON(const unsigned char* data, std::string& text, bool& isDigi) const;
2020-12-15 17:21:07 +01:00
};
#endif
2023-06-29 12:59:52 +02:00
#endif