forked from g4klx/MMDVMHost
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add skeletons for the other channel decoders.
- Loading branch information
Showing
16 changed files
with
400 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
/* | ||
* Copyright (C) 2018 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. | ||
*/ | ||
|
||
#include "NXDNFACCH1.h" | ||
|
||
#include "NXDNConvolution.h" | ||
#include "NXDNDefines.h" | ||
#include "NXDNCRC.h" | ||
#include "Utils.h" | ||
#include "Log.h" | ||
|
||
#include <cstdio> | ||
#include <cassert> | ||
#include <cstring> | ||
|
||
const unsigned char BIT_MASK_TABLE[] = { 0x80U, 0x40U, 0x20U, 0x10U, 0x08U, 0x04U, 0x02U, 0x01U }; | ||
|
||
#define WRITE_BIT1(p,i,b) p[(i)>>3] = (b) ? (p[(i)>>3] | BIT_MASK_TABLE[(i)&7]) : (p[(i)>>3] & ~BIT_MASK_TABLE[(i)&7]) | ||
#define READ_BIT1(p,i) (p[(i)>>3] & BIT_MASK_TABLE[(i)&7]) | ||
|
||
CNXDNFACCH1::CNXDNFACCH1(const CNXDNFACCH1& facch1) | ||
{ | ||
} | ||
|
||
CNXDNFACCH1::CNXDNFACCH1() | ||
{ | ||
} | ||
|
||
CNXDNFACCH1::~CNXDNFACCH1() | ||
{ | ||
} | ||
|
||
bool CNXDNFACCH1::decode(const unsigned char* data) | ||
{ | ||
assert(data != NULL); | ||
|
||
return true; | ||
} | ||
|
||
void CNXDNFACCH1::encode(unsigned char* data) const | ||
{ | ||
assert(data != NULL); | ||
} | ||
|
||
void CNXDNFACCH1::getData(unsigned char* data) const | ||
{ | ||
assert(data != NULL); | ||
} | ||
|
||
void CNXDNFACCH1::setData(const unsigned char* data) | ||
{ | ||
assert(data != NULL); | ||
} | ||
|
||
CNXDNFACCH1& CNXDNFACCH1::operator=(const CNXDNFACCH1& facch1) | ||
{ | ||
return *this; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* | ||
* Copyright (C) 2018 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. | ||
*/ | ||
|
||
#if !defined(NXDNFACCH1_H) | ||
#define NXDNFACCH1_H | ||
|
||
class CNXDNFACCH1 { | ||
public: | ||
CNXDNFACCH1(const CNXDNFACCH1& facch); | ||
CNXDNFACCH1(); | ||
~CNXDNFACCH1(); | ||
|
||
bool decode(const unsigned char* data); | ||
|
||
void encode(unsigned char* data) const; | ||
void getData(unsigned char* data) const; | ||
|
||
void setData(const unsigned char* data); | ||
|
||
CNXDNFACCH1& operator=(const CNXDNFACCH1& facch); | ||
|
||
private: | ||
}; | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/* | ||
* Copyright (C) 2018 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. | ||
*/ | ||
|
||
#include "NXDNFACCH2.h" | ||
|
||
#include "NXDNConvolution.h" | ||
#include "NXDNDefines.h" | ||
#include "NXDNCRC.h" | ||
#include "Utils.h" | ||
#include "Log.h" | ||
|
||
#include <cstdio> | ||
#include <cassert> | ||
#include <cstring> | ||
|
||
const unsigned char BIT_MASK_TABLE[] = { 0x80U, 0x40U, 0x20U, 0x10U, 0x08U, 0x04U, 0x02U, 0x01U }; | ||
|
||
#define WRITE_BIT1(p,i,b) p[(i)>>3] = (b) ? (p[(i)>>3] | BIT_MASK_TABLE[(i)&7]) : (p[(i)>>3] & ~BIT_MASK_TABLE[(i)&7]) | ||
#define READ_BIT1(p,i) (p[(i)>>3] & BIT_MASK_TABLE[(i)&7]) | ||
|
||
CNXDNFACCH2::CNXDNFACCH2(const CNXDNFACCH2& facch2) | ||
{ | ||
} | ||
|
||
CNXDNFACCH2::CNXDNFACCH2() | ||
{ | ||
} | ||
|
||
CNXDNFACCH2::~CNXDNFACCH2() | ||
{ | ||
} | ||
|
||
bool CNXDNFACCH2::decode(const unsigned char* data) | ||
{ | ||
assert(data != NULL); | ||
|
||
return true; | ||
} | ||
|
||
void CNXDNFACCH2::encode(unsigned char* data) const | ||
{ | ||
assert(data != NULL); | ||
} | ||
|
||
unsigned char CNXDNFACCH2::getRAN() const | ||
{ | ||
return 0U; | ||
} | ||
|
||
void CNXDNFACCH2::getData(unsigned char* data) const | ||
{ | ||
assert(data != NULL); | ||
} | ||
|
||
void CNXDNFACCH2::setRAN(unsigned char ran) | ||
{ | ||
} | ||
|
||
void CNXDNFACCH2::setData(const unsigned char* data) | ||
{ | ||
assert(data != NULL); | ||
} | ||
|
||
CNXDNFACCH2& CNXDNFACCH2::operator=(const CNXDNFACCH2& facch2) | ||
{ | ||
return *this; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
* Copyright (C) 2018 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. | ||
*/ | ||
|
||
#if !defined(NXDNFACCH2_H) | ||
#define NXDNFACCH2_H | ||
|
||
class CNXDNFACCH2 { | ||
public: | ||
CNXDNFACCH2(const CNXDNFACCH2& facch); | ||
CNXDNFACCH2(); | ||
~CNXDNFACCH2(); | ||
|
||
bool decode(const unsigned char* data); | ||
|
||
void encode(unsigned char* data) const; | ||
|
||
unsigned char getRAN() const; | ||
|
||
void getData(unsigned char* data) const; | ||
|
||
void setRAN(unsigned char ran); | ||
|
||
void setData(const unsigned char* data); | ||
|
||
CNXDNFACCH2& operator=(const CNXDNFACCH2& facch); | ||
|
||
private: | ||
}; | ||
|
||
#endif |
Oops, something went wrong.