From 7275f65e44ce19a920ae796aed9bd6bbf94cc7a1 Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Mon, 23 Aug 2021 21:07:17 +0100 Subject: [PATCH] Reset the transmit levels to be correct. --- M17TX.cpp | 10 +++++----- Version.h | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/M17TX.cpp b/M17TX.cpp index 98e6993..eb19833 100644 --- a/M17TX.cpp +++ b/M17TX.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2009-2018,2020 by Jonathan Naylor G4KLX + * Copyright (C) 2009-2018,2020,2021 by Jonathan Naylor G4KLX * Copyright (C) 2017 by Andy Uribe CA6JAU * * This program is free software; you can redistribute it and/or modify @@ -33,10 +33,10 @@ static q15_t RRC_0_5_FILTER[] = {0, 0, 0, 0, -290, -174, 142, 432, 438, 90, -387 438, 432, 142, -174, -290}; // numTaps = 45, L = 5 const uint16_t RRC_0_5_FILTER_PHASE_LEN = 9U; // phaseLength = numTaps/L -const q15_t M17_LEVELA = 1683; -const q15_t M17_LEVELB = 561; -const q15_t M17_LEVELC = -561; -const q15_t M17_LEVELD = -1683; +const q15_t M17_LEVELA = 1481; +const q15_t M17_LEVELB = 494; +const q15_t M17_LEVELC = -494; +const q15_t M17_LEVELD = -1481; const uint8_t M17_START_SYNC = 0x77U; const uint8_t M17_END_SYNC = 0xFFU; diff --git a/Version.h b/Version.h index 1afbd05..5a3bb77 100644 --- a/Version.h +++ b/Version.h @@ -19,7 +19,7 @@ #if !defined(VERSION_H) #define VERSION_H -#define VERSION "20210808" +#define VERSION "20210823" #endif