2018-12-08 14:09:59 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015,2016,2017,2018 Jonathan Naylor, G4KLX
|
|
|
|
* Copyright (C) 2018 by Shawn Chain, BG5HHP
|
|
|
|
*
|
|
|
|
* 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; version 2 of the License.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DMRTA_H
|
|
|
|
#define DMRTA_H
|
|
|
|
|
|
|
|
class CDMRTA {
|
|
|
|
public:
|
|
|
|
CDMRTA();
|
|
|
|
~CDMRTA();
|
|
|
|
|
2018-12-09 09:24:11 +00:00
|
|
|
bool add(unsigned int blockId, const unsigned char* data, unsigned int len);
|
2018-12-08 14:09:59 +00:00
|
|
|
const unsigned char* get();
|
|
|
|
void reset();
|
|
|
|
|
|
|
|
protected:
|
2018-12-09 15:49:15 +00:00
|
|
|
bool decodeTA();
|
2018-12-08 14:09:59 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
char m_TA[32];
|
|
|
|
unsigned char m_buf[32];
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|