Handle rejected M17 RF transmissions.

This commit is contained in:
Jonathan Naylor
2023-01-04 17:19:10 +00:00
parent f216ee4e04
commit 97a00ef2a3
4 changed files with 25 additions and 14 deletions

View File

@@ -149,6 +149,12 @@ void LogFinalise()
{
if (m_fpLog != NULL)
::fclose(m_fpLog);
if (m_mqtt != NULL) {
m_mqtt->close();
delete m_mqtt;
m_mqtt = NULL;
}
}
void Log(unsigned int level, const char* fmt, ...)