use components/wifi-controller/espidf-v4.1.c

This commit is contained in:
a 2020-08-21 04:28:11 +02:00
parent 90afad2666
commit a9290385ab
4 changed files with 1 additions and 8 deletions

View File

@ -1,6 +1,6 @@
idf_component_register(
SRCS
"espidf-v4.0.c"
"espidf-v4.1.c"
INCLUDE_DIRS "."
PRIV_REQUIRES
esp_wifi

View File

@ -1,5 +1,3 @@
#ifdef FRAMEWORK_espidf
// Copyright 2020 Lukas Haubaum
//
// Licensed under the GNU Affero General Public License, Version 3;
// you may not use this file except in compliance with the License.
@ -176,4 +174,3 @@ wifi_ap_record_t *wifi_controller_connection(void)
}
return NULL;
}
#endif

View File

@ -1,4 +1,3 @@
#ifdef FRAMEWORK_espidf
// Copyright 2020 Lukas Haubaum
//
// Licensed under the GNU Affero General Public License, Version 3;
@ -184,4 +183,3 @@ wifi_ap_record_t *wifi_controller_connection(void)
}
return NULL;
}
#endif

View File

@ -1,3 +1 @@
#ifdef FRAMEWORK_zephyr
#error WIFI not implemented, yet
#endif