Disable M17 EOT transmission for now.

This commit is contained in:
Jonathan Naylor 2021-09-08 19:52:31 +01:00
parent 6781dec322
commit d9621c5c8b
2 changed files with 3 additions and 2 deletions

View file

@ -114,13 +114,14 @@ uint8_t CM17TX::writeStream(const uint8_t* data, uint8_t length)
uint8_t CM17TX::writeEOT() uint8_t CM17TX::writeEOT()
{ {
/*
uint16_t space = m_buffer.getSpace(); uint16_t space = m_buffer.getSpace();
if (space < M17_SYNC_LENGTH_BYTES) if (space < M17_SYNC_LENGTH_BYTES)
return 5U; return 5U;
for (uint8_t i = 0U; i < M17_SYNC_LENGTH_BYTES; i++) for (uint8_t i = 0U; i < M17_SYNC_LENGTH_BYTES; i++)
m_buffer.put(M17_EOF_SYNC_BYTES[i]); m_buffer.put(M17_EOF_SYNC_BYTES[i]);
*/
return 0U; return 0U;
} }

View file

@ -26,7 +26,7 @@
#define VER_MAJOR "1" #define VER_MAJOR "1"
#define VER_MINOR "5" #define VER_MINOR "5"
#define VER_REV "2" #define VER_REV "2"
#define VERSION_DATE "20210826" #define VERSION_DATE "20210908"
#if defined(ZUMSPOT_ADF7021) #if defined(ZUMSPOT_ADF7021)
#define BOARD_INFO "ZUMspot" #define BOARD_INFO "ZUMspot"