mirror of
https://github.com/g4klx/MMDVMHost
synced 2025-12-21 15:09:23 +08:00
Beginnings of DMR data support.
This commit is contained in:
49
DMRDataHeader.h
Normal file
49
DMRDataHeader.h
Normal file
@@ -0,0 +1,49 @@
|
||||
/*
|
||||
* Copyright (C) 2015,2016 by Jonathan Naylor G4KLX
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#ifndef DMRDataHeader_H
|
||||
#define DMRDataHeader_H
|
||||
|
||||
#include "BPTC19696.h"
|
||||
|
||||
class CDMRDataHeader
|
||||
{
|
||||
public:
|
||||
CDMRDataHeader(const unsigned char* data);
|
||||
~CDMRDataHeader();
|
||||
|
||||
bool isValid() const;
|
||||
|
||||
bool getGI() const;
|
||||
|
||||
unsigned int getSrcId() const;
|
||||
unsigned int getDstId() const;
|
||||
|
||||
unsigned int getBlocks() const;
|
||||
|
||||
private:
|
||||
CBPTC19696 m_bptc;
|
||||
bool m_valid;
|
||||
bool m_gi;
|
||||
unsigned int m_srcId;
|
||||
unsigned int m_dstId;
|
||||
unsigned int m_blocks;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user