1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-11-22 23:56:13 +01:00
CommandStation-EX/WifiESP32.cpp

270 lines
7.4 KiB
C++
Raw Normal View History

2021-10-05 10:39:08 +02:00
/*
© 2021, Harald Barth.
This file is part of CommandStation-EX
This is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
It is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with CommandStation. If not, see <https://www.gnu.org/licenses/>.
*/
2022-07-31 00:23:19 +02:00
#if defined(ARDUINO_ARCH_ESP32)
2021-11-14 13:10:16 +01:00
#include <vector>
2021-10-05 10:39:08 +02:00
#include "defines.h"
#include <WiFi.h>
2022-07-31 08:47:58 +02:00
#include "esp_wifi.h"
2021-10-05 10:39:08 +02:00
#include "WifiESP32.h"
#include "DIAG.h"
#include "RingStream.h"
#include "CommandDistributor.h"
/*
#include "soc/rtc_wdt.h"
#include "esp_task_wdt.h"
*/
#include "soc/timer_group_struct.h"
#include "soc/timer_group_reg.h"
void feedTheDog0(){
// feed dog 0
TIMERG0.wdt_wprotect=TIMG_WDT_WKEY_VALUE; // write enable
TIMERG0.wdt_feed=1; // feed dog
TIMERG0.wdt_wprotect=0; // write protect
// feed dog 1
//TIMERG1.wdt_wprotect=TIMG_WDT_WKEY_VALUE; // write enable
//TIMERG1.wdt_feed=1; // feed dog
//TIMERG1.wdt_wprotect=0; // write protect
}
/*
void enableCoreWDT(byte core){
TaskHandle_t idle = xTaskGetIdleTaskHandleForCPU(core);
if(idle == NULL){
DIAG(F("Get idle rask on core %d failed"),core);
} else {
if(esp_task_wdt_add(idle) != ESP_OK){
DIAG(F("Failed to add Core %d IDLE task to WDT"),core);
} else {
DIAG(F("Added Core %d IDLE task to WDT"),core);
}
}
}
void disableCoreWDT(byte core){
TaskHandle_t idle = xTaskGetIdleTaskHandleForCPU(core);
if(idle == NULL || esp_task_wdt_delete(idle) != ESP_OK){
DIAG(F("Failed to remove Core %d IDLE task from WDT"),core);
}
}
*/
2021-10-05 10:39:08 +02:00
2021-10-05 21:53:02 +02:00
static std::vector<WiFiClient> clients; // a list to hold all clients
static WiFiServer *server = NULL;
static RingStream *outboundRing = new RingStream(2048);
2021-10-31 00:10:58 +02:00
static bool APmode = false;
2021-10-05 21:53:02 +02:00
void wifiLoop(void *){
for(;;){
WifiESP::loop();
}
}
2021-10-05 10:39:08 +02:00
bool WifiESP::setup(const char *SSid,
const char *password,
const char *hostname,
int port,
const byte channel) {
2021-10-05 21:53:02 +02:00
bool havePassword = true;
bool haveSSID = true;
bool wifiUp = false;
2021-11-02 17:50:32 +01:00
uint8_t tries = 40;
2021-10-05 21:53:02 +02:00
// tests
// enableCoreWDT(1);
// disableCoreWDT(0);
2022-07-31 13:35:25 +02:00
// clean start
WiFi.disconnect(true);
//WiFi.useStaticBuffers(true);
//WiFi.setTxPower(WIFI_POWER_8_5dBm);
2021-10-05 21:53:02 +02:00
const char *yourNetwork = "Your network ";
if (strncmp(yourNetwork, SSid, 13) == 0 || strncmp("", SSid, 13) == 0)
haveSSID = false;
if (strncmp(yourNetwork, password, 13) == 0 || strncmp("", password, 13) == 0)
havePassword = false;
if (haveSSID && havePassword) {
WiFi.mode(WIFI_STA);
WiFi.setSleep(false);
2021-10-05 21:53:02 +02:00
WiFi.setAutoReconnect(true);
WiFi.begin(SSid, password);
2021-11-02 17:50:32 +01:00
while (WiFi.status() != WL_CONNECTED && tries) {
2021-10-05 21:53:02 +02:00
Serial.print('.');
2021-11-02 17:50:32 +01:00
tries--;
2021-10-05 21:53:02 +02:00
delay(500);
}
if (WiFi.status() == WL_CONNECTED) {
DIAG(F("Wifi STA IP %s"),WiFi.localIP().toString().c_str());
wifiUp = true;
2021-10-31 00:40:35 +02:00
} else {
DIAG(F("Could not connect to Wifi SSID %s"),SSid);
2022-07-31 08:47:58 +02:00
DIAG(F("Forcing one more Wifi restart"));
esp_wifi_start();
esp_wifi_connect();
tries=40;
while (WiFi.status() != WL_CONNECTED && tries) {
Serial.print('.');
tries--;
delay(500);
}
if (WiFi.status() == WL_CONNECTED) {
DIAG(F("Wifi STA IP 2nd try %s"),WiFi.localIP().toString().c_str());
wifiUp = true;
} else {
DIAG(F("Fail 2nd try"));
}
2021-10-05 21:53:02 +02:00
}
}
if (!haveSSID) {
// prepare all strings
String strSSID("DCC_");
String strPass("PASS_");
String strMac = WiFi.macAddress();
strMac.remove(0,9);
strMac.replace(":","");
strMac.replace(":","");
strSSID.concat(strMac);
strPass.concat(strMac);
WiFi.mode(WIFI_AP);
2022-08-05 16:14:51 +02:00
WiFi.setSleep(false);
2021-10-05 21:53:02 +02:00
if (WiFi.softAP(strSSID.c_str(),
havePassword ? password : strPass.c_str(),
channel, false, 8)) {
DIAG(F("Wifi AP SSID %s PASS %s"),strSSID.c_str(),havePassword ? password : strPass.c_str());
DIAG(F("Wifi AP IP %s"),WiFi.softAPIP().toString().c_str());
wifiUp = true;
2021-10-31 00:10:58 +02:00
APmode = true;
2021-10-31 00:40:35 +02:00
} else {
DIAG(F("Could not set up AP with Wifi SSID %s"),strSSID.c_str());
2021-10-05 21:53:02 +02:00
}
}
if (!wifiUp) {
2021-10-31 00:40:35 +02:00
DIAG(F("Wifi setup all fail (STA and AP mode)"));
2021-10-05 21:53:02 +02:00
// no idea to go on
return false;
}
server = new WiFiServer(port); // start listening on tcp port
server->begin();
2021-11-06 02:59:57 +01:00
// server started here
//start loop task
if (pdPASS != xTaskCreatePinnedToCore(
wifiLoop, /* Task function. */
"wifiLoop",/* name of task. */
10000, /* Stack size of task */
NULL, /* parameter of the task */
1, /* priority of the task */
NULL, /* Task handle to keep track of created task */
0)) { /* pin task to core 0 */
DIAG(F("Could not create wifiLoop task"));
return false;
}
2021-10-05 21:53:02 +02:00
2021-11-06 02:59:57 +01:00
// report server started after wifiLoop creation
// when everything looks good
DIAG(F("Server up port %d"),port);
2021-10-05 21:53:02 +02:00
return true;
2021-10-05 10:39:08 +02:00
}
void WifiESP::loop() {
2021-10-05 21:53:02 +02:00
int clientId; //tmp loop var
2021-10-31 00:10:58 +02:00
// really no good way to check for LISTEN especially in AP mode?
if (APmode || WiFi.status() == WL_CONNECTED) {
2021-10-05 21:53:02 +02:00
if (server->hasClient()) {
// loop over all clients and remove inactive
for (clientId=0; clientId<clients.size(); clientId++){
// check if client is there and alive
if(!clients[clientId].connected()) {
clients[clientId].stop();
clients.erase(clients.begin()+clientId);
}
}
WiFiClient client;
while (client = server->available()) {
clients.push_back(client);
DIAG(F("New client %s"), client.remoteIP().toString().c_str());
}
}
// loop over all connected clients
for (clientId=0; clientId<clients.size(); clientId++){
if(clients[clientId].connected()) {
int len;
if ((len = clients[clientId].available()) > 0) {
// read data from client
byte cmd[len+1];
for(int i=0; i<len; i++) {
cmd[i]=clients[clientId].read();
}
cmd[len]=0;
outboundRing->mark(clientId);
CommandDistributor::parse(clientId,cmd,outboundRing);
outboundRing->commit();
}
}
} // all clients
2021-10-05 10:39:08 +02:00
2021-10-05 21:53:02 +02:00
// something to write out?
clientId=outboundRing->peek();
if (clientId >= 0) {
if ((unsigned int)clientId > clients.size()) {
// something is wrong with the ringbuffer position
outboundRing->info();
} else {
// we have data to send in outboundRing
if(clients[clientId].connected()) {
outboundRing->read(); // read over peek()
int count=outboundRing->count();
{
char buffer[count+1];
for(int i=0;i<count;i++) {
int c = outboundRing->read();
if (c >= 0)
buffer[i] = (char)c;
else {
DIAG(F("Ringread fail at %d"),i);
break;
}
}
buffer[count]=0;
clients[clientId].write(buffer,count);
}
}
}
}
} //connected
2021-11-14 13:10:16 +01:00
// when loop() is running on core0 we must
// feed the core0 wdt ourselves as yield()
// is not necessarily yielding to a low
// prio task. On core1 this is not a problem
// as there the wdt is disabled by the
// arduio IDE startup routines.
if (xPortGetCoreID() == 0)
feedTheDog0();
2021-11-14 13:10:16 +01:00
yield();
2021-10-05 10:39:08 +02:00
}
#endif //ESP32