Revert "Amalgamate the two Trellis implementations and small cleanups."

This reverts commit ec9f7d7496.
This commit is contained in:
Jonathan Naylor
2024-10-04 17:14:36 +01:00
parent ec9f7d7496
commit ebea3eddb2
20 changed files with 538 additions and 134 deletions

View File

@@ -23,11 +23,6 @@
#include "Display.h"
#include "Timer.h"
#if defined(_WIN32) || defined(_WIN64)
#include <ws2tcpip.h>
#include <WinSock2.h>
#endif
#include <string>
class CLCDproc : public CDisplay
@@ -94,11 +89,7 @@ private:
unsigned int m_rssiCount1;
unsigned int m_rssiCount2;
#if defined(_WIN32) || defined(_WIN64)
int socketPrintf(SOCKET fd, const char* format, ...);
#else
int socketPrintf(int fd, const char* format, ...);
#endif
int socketPrintf(int fd, const char *format, ...);
void defineScreens();
};