From 1df7d7a7fc23eeadf30726f8a08125b7eb894485 Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Sun, 7 Mar 2021 19:01:46 +0000 Subject: [PATCH] Change the FM serial block size to 80. --- FM.cpp | 4 ++-- Version.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/FM.cpp b/FM.cpp index 6b35dd4..cd67f22 100644 --- a/FM.cpp +++ b/FM.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2020 by Jonathan Naylor G4KLX + * Copyright (C) 2020,2021 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 @@ -24,7 +24,7 @@ #include "FM.h" const uint16_t FM_TX_BLOCK_SIZE = 100U; -const uint16_t FM_SERIAL_BLOCK_SIZE = 84U;//this is the number of sample pairs to send over serial. One sample pair is 3bytes. +const uint16_t FM_SERIAL_BLOCK_SIZE = 80U;//this is the number of sample pairs to send over serial. One sample pair is 3bytes. //three times this value shall never exceed 252 const uint16_t FM_SERIAL_BLOCK_SIZE_BYTES = FM_SERIAL_BLOCK_SIZE * 3U; diff --git a/Version.h b/Version.h index a4ea21d..1f24c03 100644 --- a/Version.h +++ b/Version.h @@ -19,7 +19,7 @@ #if !defined(VERSION_H) #define VERSION_H -#define VERSION "20210102" +#define VERSION "20210307" #endif