Skip to content

Commit

Permalink
More formatting..?
Browse files Browse the repository at this point in the history
  • Loading branch information
Cabooman committed Jan 8, 2024
1 parent 83fd9a7 commit 8e00040
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions Software/src/devboard/wifi/wifi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ unsigned long wifi_connect_start_time;
unsigned long wifi_connect_current_time;
const long wifi_connect_timeout = 5000; // Timeout for WiFi connect in milliseconds


static void wifi_reconnect(void) {
if (WiFi.status() != WL_CONNECTED) {
WiFi.reconnect();
Expand Down Expand Up @@ -75,8 +74,6 @@ static void init_wifi(void) {

void init_wireless(void) {
xTaskCreate(wifi_taskfunction, "Wifi task", 1024 * 8, NULL, 1, NULL);
// xTaskCreate(webserver_taskfunction, "Webserver task", 1024 * 4, NULL, 1, NULL); // Extra space for OTA, we should look at the high water marks for these tasks...
// xTaskCreate(mqtt_taskfunction, "MQTT task", 1024, NULL, 1, NULL);
}

bool wifi_is_connected(void) {
Expand Down

0 comments on commit 8e00040

Please sign in to comment.