1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2025-07-28 18:03:45 +02:00

Passing outbound Ring to Withrottle

This will allow Withrottle to send to other clients and broadcast messages.
This commit is contained in:
Asbelos
2020-10-26 13:31:51 +00:00
parent 6833d82789
commit 8ff947f895
7 changed files with 20 additions and 8 deletions

View File

@@ -22,7 +22,7 @@
#include <avr/pgmspace.h>
#include "DIAG.h"
#include "StringFormatter.h"
#include "WiThrottle.h"
#include "WifiInboundHandler.h"
const char PROGMEM READY_SEARCH[] = "\r\nready\r\n";
@@ -295,7 +295,6 @@ bool WifiInterface::checkForOK( const unsigned int timeout, const char * waitfor
void WifiInterface::loop() {
if (connected) {
WiThrottle::loop();
WifiInboundHandler::loop();
}
}