summaryrefslogtreecommitdiff
path: root/code/esp32/components/eos/wifi.c
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2019-12-08 17:47:58 +0100
committerUros Majstorovic <majstor@majstor.org>2019-12-08 17:47:58 +0100
commit602d0d803eb9607dcd949f3ea5ff27c14db4085b (patch)
treed48d217a9a596a757a7e5fc6b4ee46a33dc7ab04 /code/esp32/components/eos/wifi.c
parent078898fb69ec692e8a051746f423ad3171ff4d7c (diff)
fixed uart data relay bug; fixed all xCreateTask to use new macros for stack size; fixed err type for msgq;
Diffstat (limited to 'code/esp32/components/eos/wifi.c')
-rwxr-xr-xcode/esp32/components/eos/wifi.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/code/esp32/components/eos/wifi.c b/code/esp32/components/eos/wifi.c
index 29cd983..09b0b39 100755
--- a/code/esp32/components/eos/wifi.c
+++ b/code/esp32/components/eos/wifi.c
@@ -88,6 +88,7 @@ void eos_wifi_init(void) {
ESP_ERROR_CHECK( esp_wifi_set_config(ESP_IF_WIFI_STA, &wifi_config) );
ESP_ERROR_CHECK( esp_wifi_start() );
eos_net_set_handler(EOS_NET_MTYPE_WIFI, wifi_handler);
+ ESP_LOGI(TAG, "INIT");
}
void eos_wifi_connect(char *ssid, char *pass) {