2025-03-03 13:26:37 +01:00
|
|
|
#include "SerialWifiInterface.h"
|
|
|
|
|
#include <WiFi.h>
|
|
|
|
|
|
|
|
|
|
void SerialWifiInterface::begin(int port) {
|
|
|
|
|
// wifi setup is handled outside of this class, only starts the server
|
|
|
|
|
server.begin(port);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ---------- public methods
|
|
|
|
|
void SerialWifiInterface::enable() {
|
|
|
|
|
if (_isEnabled) return;
|
|
|
|
|
|
|
|
|
|
_isEnabled = true;
|
|
|
|
|
clearBuffers();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SerialWifiInterface::disable() {
|
|
|
|
|
_isEnabled = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
size_t SerialWifiInterface::writeFrame(const uint8_t src[], size_t len) {
|
|
|
|
|
if (len > MAX_FRAME_SIZE) {
|
2025-03-04 14:04:47 +11:00
|
|
|
WIFI_DEBUG_PRINTLN("writeFrame(), frame too big, len=%d\n", len);
|
2025-03-03 13:26:37 +01:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (deviceConnected && len > 0) {
|
|
|
|
|
if (send_queue_len >= FRAME_QUEUE_SIZE) {
|
2025-03-04 14:04:47 +11:00
|
|
|
WIFI_DEBUG_PRINTLN("writeFrame(), send_queue is full!");
|
2025-03-03 13:26:37 +01:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
send_queue[send_queue_len].len = len; // add to send queue
|
|
|
|
|
memcpy(send_queue[send_queue_len].buf, src, len);
|
|
|
|
|
send_queue_len++;
|
|
|
|
|
|
|
|
|
|
return len;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool SerialWifiInterface::isWriteBusy() const {
|
2025-03-04 14:04:47 +11:00
|
|
|
return false;
|
2025-03-03 13:26:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
size_t SerialWifiInterface::checkRecvFrame(uint8_t dest[]) {
|
2025-08-29 19:47:24 +12:00
|
|
|
// check if new client connected
|
|
|
|
|
auto newClient = server.available();
|
|
|
|
|
if (newClient) {
|
|
|
|
|
|
|
|
|
|
// disconnect existing client
|
|
|
|
|
deviceConnected = false;
|
|
|
|
|
client.stop();
|
|
|
|
|
|
|
|
|
|
// switch active connection to new client
|
|
|
|
|
client = newClient;
|
|
|
|
|
|
|
|
|
|
}
|
2025-03-03 13:26:37 +01:00
|
|
|
|
|
|
|
|
if (client.connected()) {
|
|
|
|
|
if (!deviceConnected) {
|
2025-03-04 14:04:47 +11:00
|
|
|
WIFI_DEBUG_PRINTLN("Got connection");
|
2025-03-03 13:26:37 +01:00
|
|
|
deviceConnected = true;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if (deviceConnected) {
|
|
|
|
|
deviceConnected = false;
|
2025-03-04 14:04:47 +11:00
|
|
|
WIFI_DEBUG_PRINTLN("Disconnected");
|
2025-03-03 13:26:37 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (deviceConnected) {
|
|
|
|
|
if (send_queue_len > 0) { // first, check send queue
|
|
|
|
|
|
|
|
|
|
_last_write = millis();
|
|
|
|
|
int len = send_queue[0].len;
|
|
|
|
|
|
|
|
|
|
uint8_t pkt[3+len]; // use same header as serial interface so client can delimit frames
|
|
|
|
|
pkt[0] = '>';
|
|
|
|
|
pkt[1] = (len & 0xFF); // LSB
|
|
|
|
|
pkt[2] = (len >> 8); // MSB
|
|
|
|
|
memcpy(&pkt[3], send_queue[0].buf, send_queue[0].len);
|
|
|
|
|
client.write(pkt, 3 + len);
|
|
|
|
|
send_queue_len--;
|
|
|
|
|
for (int i = 0; i < send_queue_len; i++) { // delete top item from queue
|
|
|
|
|
send_queue[i] = send_queue[i + 1];
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
int len = client.available();
|
|
|
|
|
if (len > 0) {
|
|
|
|
|
uint8_t buf[MAX_FRAME_SIZE + 4];
|
|
|
|
|
client.readBytes(buf, len);
|
|
|
|
|
memcpy(dest, buf+3, len-3); // remove header (don't even check ... problems are on the other dir)
|
|
|
|
|
return len-3;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool SerialWifiInterface::isConnected() const {
|
|
|
|
|
return deviceConnected; //pServer != NULL && pServer->getConnectedCount() > 0;
|
|
|
|
|
}
|