]> granicus.if.org Git - esp-idf/commitdiff
examples/protocols/sntp: use common network component
authorIvan Grokhotkov <ivan@espressif.com>
Tue, 20 Nov 2018 16:41:31 +0000 (00:41 +0800)
committerbot <bot@espressif.com>
Mon, 15 Apr 2019 03:32:05 +0000 (03:32 +0000)
examples/protocols/sntp/CMakeLists.txt
examples/protocols/sntp/Makefile
examples/protocols/sntp/README.md
examples/protocols/sntp/main/Kconfig.projbuild [deleted file]
examples/protocols/sntp/main/sntp_example_main.c

index dd46b088b1c898750162522229db9eb6eb4fabb8..48ca89b291e42380debbccff16a33f271e17dc90 100644 (file)
@@ -2,5 +2,9 @@
 # in this exact order for cmake to work correctly
 cmake_minimum_required(VERSION 3.5)
 
+# (Not part of the boilerplate)
+# This example uses an extra component for common functions such as Wi-Fi and Ethernet connection.
+set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/common_components/protocol_examples_common)
+
 include($ENV{IDF_PATH}/tools/cmake/project.cmake)
 project(sntp)
index e6ef17be146b1ccd4bdf73496e53e14b365d2af6..d3e9a53f1564de37893fae530d8a2b2322b959ac 100644 (file)
@@ -5,5 +5,7 @@
 
 PROJECT_NAME := sntp
 
+EXTRA_COMPONENT_DIRS = $(IDF_PATH)/examples/common_components/protocol_examples_common
+
 include $(IDF_PATH)/make/project.mk
 
index 52db973b851f0e1e8595d92e83abbeb2dc58467b..a336b2b9be7db9d27ba1635a1e2df05dd03ef928 100644 (file)
@@ -2,6 +2,14 @@
 
 This example demonstrates the use of LwIP SNTP module to obtain time from Internet servers. See the README.md file in the upper level 'examples' directory for more information about examples.
 
+## Configuring the Example
+
+To configure the project, run `make menuconfig` (or `idf.py menuconfig` if using CMake build system).
+
+* Configure Wi-Fi or Ethernet under "Example Connection Configuration" menu. See "Establishing Wi-Fi or Ethernet Connection" section in [examples/protocols/README.md](../README.md) for more details.
+
+* When using Make build system, set `Default serial port` under `Serial flasher config`.
+
 ## Obtaining time using LwIP SNTP module
 
 When this example boots first time after ESP32 is reset, it connects to WiFi and obtains time using SNTP.
diff --git a/examples/protocols/sntp/main/Kconfig.projbuild b/examples/protocols/sntp/main/Kconfig.projbuild
deleted file mode 100644 (file)
index 803ab08..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-menu "Example Configuration"
-
-    config WIFI_SSID
-        string "WiFi SSID"
-        default "myssid"
-        help
-            SSID (network name) for the example to connect to.
-
-    config WIFI_PASSWORD
-        string "WiFi Password"
-        default "mypassword"
-        help
-            WiFi password (WPA or WPA2) for the example to use.
-
-            Can be left blank if the network has no security set.
-
-endmenu
index 0cfdeb7a5814bc97590e7767d4a930d1b2f9e13d..bf504bfce8f9756405b2cdde5c3f9a64ca351cbe 100644 (file)
 #include "freertos/task.h"
 #include "freertos/event_groups.h"
 #include "esp_system.h"
-#include "esp_wifi.h"
-#include "esp_event_loop.h"
+#include "esp_event.h"
 #include "esp_log.h"
 #include "esp_attr.h"
 #include "esp_sleep.h"
 #include "nvs_flash.h"
+#include "protocol_examples_common.h"
 
 #include "lwip/err.h"
 #include "lwip/apps/sntp.h"
 
-/* The examples use simple WiFi configuration that you can set via
-   'make menuconfig'.
-
-   If you'd rather not, just change the below entries to strings with
-   the config you want - ie #define EXAMPLE_WIFI_SSID "mywifissid"
-*/
-#define EXAMPLE_WIFI_SSID CONFIG_WIFI_SSID
-#define EXAMPLE_WIFI_PASS CONFIG_WIFI_PASSWORD
-
-/* FreeRTOS event group to signal when we are connected & ready to make a request */
-static EventGroupHandle_t wifi_event_group;
-
-/* The event group allows multiple bits for each event,
-   but we only care about one event - are we connected
-   to the AP with an IP? */
-const int CONNECTED_BIT = BIT0;
-
 static const char *TAG = "example";
 
 /* Variable holding number of times ESP32 restarted since first boot.
@@ -50,8 +33,6 @@ RTC_DATA_ATTR static int boot_count = 0;
 
 static void obtain_time(void);
 static void initialize_sntp(void);
-static void initialise_wifi(void);
-static esp_err_t event_handler(void *ctx, system_event_t *event);
 
 
 void app_main()
@@ -94,9 +75,15 @@ void app_main()
 static void obtain_time(void)
 {
     ESP_ERROR_CHECK( nvs_flash_init() );
-    initialise_wifi();
-    xEventGroupWaitBits(wifi_event_group, CONNECTED_BIT,
-                        false, true, portMAX_DELAY);
+    tcpip_adapter_init();
+    ESP_ERROR_CHECK( esp_event_loop_create_default() );
+
+    /* This helper function configures Wi-Fi or Ethernet, as selected in menuconfig.
+     * Read "Establishing Wi-Fi or Ethernet Connection" section in
+     * examples/protocols/README.md for more information about this function.
+     */
+    ESP_ERROR_CHECK(example_connect());
+
     initialize_sntp();
 
     // wait for time to be set
@@ -111,7 +98,7 @@ static void obtain_time(void)
         localtime_r(&now, &timeinfo);
     }
 
-    ESP_ERROR_CHECK( esp_wifi_stop() );
+    ESP_ERROR_CHECK( example_disconnect() );
 }
 
 static void initialize_sntp(void)
@@ -121,44 +108,3 @@ static void initialize_sntp(void)
     sntp_setservername(0, "pool.ntp.org");
     sntp_init();
 }
-
-static void initialise_wifi(void)
-{
-    tcpip_adapter_init();
-    wifi_event_group = xEventGroupCreate();
-    ESP_ERROR_CHECK( esp_event_loop_init(event_handler, NULL) );
-    wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();
-    ESP_ERROR_CHECK( esp_wifi_init(&cfg) );
-    ESP_ERROR_CHECK( esp_wifi_set_storage(WIFI_STORAGE_RAM) );
-    wifi_config_t wifi_config = {
-        .sta = {
-            .ssid = EXAMPLE_WIFI_SSID,
-            .password = EXAMPLE_WIFI_PASS,
-        },
-    };
-    ESP_LOGI(TAG, "Setting WiFi configuration SSID %s...", wifi_config.sta.ssid);
-    ESP_ERROR_CHECK( esp_wifi_set_mode(WIFI_MODE_STA) );
-    ESP_ERROR_CHECK( esp_wifi_set_config(ESP_IF_WIFI_STA, &wifi_config) );
-    ESP_ERROR_CHECK( esp_wifi_start() );
-}
-
-static esp_err_t event_handler(void *ctx, system_event_t *event)
-{
-    switch(event->event_id) {
-    case SYSTEM_EVENT_STA_START:
-        esp_wifi_connect();
-        break;
-    case SYSTEM_EVENT_STA_GOT_IP:
-        xEventGroupSetBits(wifi_event_group, CONNECTED_BIT);
-        break;
-    case SYSTEM_EVENT_STA_DISCONNECTED:
-        /* This is a workaround as ESP32 WiFi libs don't currently
-           auto-reassociate. */
-        esp_wifi_connect();
-        xEventGroupClearBits(wifi_event_group, CONNECTED_BIT);
-        break;
-    default:
-        break;
-    }
-    return ESP_OK;
-}