Merge branch 'develop' into feature/ipv6_#35

feature/IPV6_#35B
Geoffrey Merck 2 years ago
commit acf71af7f7

@ -169,7 +169,11 @@ DAEMONIZE_RESULT CDaemon::daemonise(const std::string& pidFile, const std::strin
char str[256];
sprintf(str, "%d\n", getpid());
/* Write PID to lockfile */
write(m_pid_fd, str, strlen(str));
ssize_t writeCount = write(m_pid_fd, str, strlen(str));
if(writeCount < 0) {
CLog::logFatal("Failed to write to PID File. Err: %d", errno);
return DR_FAILURE;
}
}
return DR_CHILD;

@ -74,12 +74,17 @@ bool CAPRSGPSDIdFrameProvider::buildAPRSFramesInt(const CAPRSEntry * entry, std:
return false;
#endif
#if GPSD_API_MAJOR_VERSION >= 10
if(m_gpsdData.fix.status == STATUS_NO_FIX)
return false;
#else
#if GPSD_API_MAJOR_VERSION < 10
if (m_gpsdData.status != STATUS_FIX)
return false;
#elif GPSD_API_MAJOR_VERSION == 11
if(m_gpsdData.fix.status == STATUS_NO_FIX)
return false;
#elif GPSD_API_MAJOR_VERSION <= 14
if(m_gpsdData.fix.status == STATUS_UNK)
return false;
#elif
#error Unsupported GPSD_API_MAJOR_VERSION
#endif
bool latlonSet = (m_gpsdData.set & LATLON_SET) == LATLON_SET;

@ -20,6 +20,7 @@
#pragma once
#include <string>
#include <cstdint>
class CRemoteUser {
public:

@ -20,6 +20,7 @@
#define RemoteControlStarNetUser_H
#include <string>
#include <cstdint>
class CRemoteControlStarNetUser {
public:

@ -147,6 +147,9 @@ The testing framwework used is Google Test.
# 5. Version History
## 5.1. Version 1.0
- [**Bugfix**] Fix #37 Unable to transmit multiple files (DGWVoiceTransmit) ([#37](https://github.com/F4FXL/DStarGateway/issues/37))
- [**Bugfix**] Fix #36 Error1 Build fails in some environment ([#36](https://github.com/F4FXL/DStarGateway/issues/36))
- [**Bugfix**] Fix #38 g++ 13 build ([#38](https://github.com/F4FXL/DStarGateway/issues/38))
- [**Bugfix**] Add support for libgps API version greater than ([#39](https://github.com/F4FXL/DStarGateway/issues/39))
## 5.2. Version 0.7
- [**Bugfix**] Unknow repeater entries in log when using Icom Hardware ([#34](https://github.com/F4FXL/DStarGateway/issues/34))
- [**Bugfix**] Malformed callsign in some cases when using DV-G (NMEA) ([#33](https://github.com/F4FXL/DStarGateway/issues/33))

Loading…
Cancel
Save

Powered by TurnKey Linux.