3.56-maint
parent
7c674daeaf
commit
243ad6ce0c
@ -0,0 +1,73 @@
|
||||
/**
|
||||
* Digital Voice Modem - Host Software (Test Suite)
|
||||
* GPLv2 Open Source. Use is subject to license terms.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* @package DVM / Host Software / Test Suite
|
||||
*
|
||||
*/
|
||||
/*
|
||||
* Copyright (C) 2023 Bryan Biedenkapp N2PLL
|
||||
*
|
||||
* 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 "Defines.h"
|
||||
#include "edac/AMBEFEC.h"
|
||||
#include "edac/Golay24128.h"
|
||||
#include "nxdn/NXDNDefines.h"
|
||||
#include "nxdn/NXDNUtils.h"
|
||||
#include "Log.h"
|
||||
#include "Utils.h"
|
||||
|
||||
using namespace edac;
|
||||
using namespace nxdn;
|
||||
|
||||
#include <catch2/catch_test_macros.hpp>
|
||||
#include <stdlib.h>
|
||||
#include <time.h>
|
||||
|
||||
TEST_CASE("NXDN", "[AMBE FEC Test]") {
|
||||
SECTION("NXDN_AMBEFEC_Test") {
|
||||
bool failed = false;
|
||||
|
||||
INFO("NXDN AMBE FEC FEC Test");
|
||||
|
||||
uint8_t testData[] = {
|
||||
0xCDU, 0xF5U, 0x9DU, 0x5DU, 0xFCU, 0xFAU, 0x0AU, 0x6EU, 0x8AU, 0x23U, 0x56U, 0xE8U,
|
||||
0x17U, 0x49U, 0xC6U, 0x58U, 0x89U, 0x30U, 0x1AU, 0xA5U, 0xF5U, 0xACU, 0x5AU, 0x6EU, 0xF8U, 0x09U, 0x3CU, 0x48U,
|
||||
0x0FU, 0x4FU, 0xFDU, 0xCFU, 0x80U, 0xD5U, 0x77U, 0x0CU, 0xFEU, 0xE9U, 0x05U, 0xCEU, 0xE6U, 0x20U, 0xDFU, 0xFFU,
|
||||
0x18U, 0x9CU, 0x2DU, 0xA9U
|
||||
};
|
||||
|
||||
NXDNUtils::scrambler(testData);
|
||||
|
||||
Utils::dump(2U, "NXDN AMBE FEC Test, descrambled test data", testData, NXDN_FRAME_LENGTH_BYTES);
|
||||
|
||||
AMBEFEC fec = AMBEFEC();
|
||||
|
||||
uint32_t errors = 0U;
|
||||
|
||||
errors += fec.measureNXDNBER(testData + NXDN_FSW_LICH_SACCH_LENGTH_BYTES + 0U);
|
||||
errors += fec.measureNXDNBER(testData + NXDN_FSW_LICH_SACCH_LENGTH_BYTES + 9U);
|
||||
errors += fec.measureNXDNBER(testData + NXDN_FSW_LICH_SACCH_LENGTH_BYTES + 18U);
|
||||
errors += fec.measureNXDNBER(testData + NXDN_FSW_LICH_SACCH_LENGTH_BYTES + 27U);
|
||||
|
||||
if (errors > 0)
|
||||
failed = true;
|
||||
|
||||
cleanup:
|
||||
REQUIRE(failed==false);
|
||||
}
|
||||
}
|
||||
Loading…
Reference in new issue