WINC3400 Time Client Example.
Copyright (c) 2017-2019 Microchip Technology Inc. and its subsidiaries.
#include "asf.h"
#include "main.h"
#include <string.h>
#include "bsp/include/nm_bsp.h"
#include "driver/include/m2m_wifi.h"
#include "socket/include/socket.h"
Macros | |
#define | STRING_EOL "\r\n" |
#define | STRING_HEADER |
Functions | |
static void | configure_console (void) |
Configure UART console. More... | |
int | main (void) |
Main application function. More... | |
static void | wifi_cb (uint8_t u8MsgType, void *pvMsg) |
Callback to get the Wi-Fi status update. More... | |
Variables | |
static bool | gbConnectedWifi = false |
Wi-Fi status variable. More... | |
#define STRING_EOL "\r\n" |
#define STRING_HEADER |
Referenced by main().
|
static |
Configure UART console.
References uart_rs232_options::baudrate, stdio_serial_init(), and sysclk_enable_peripheral_clock().
Referenced by main().
int main | ( | void | ) |
Main application function.
Initialize system, UART console, network then configure NTP server the SNTP client should use.
References board_init(), configure_console(), M2M_SUCCESS, M2M_WIFI_CH_ALL, m2m_wifi_configure_sntp(), m2m_wifi_connect(), m2m_wifi_handle_events(), m2m_wifi_init(), MAIN_WLAN_AUTH, MAIN_WLAN_PSK, MAIN_WLAN_SSID, MAIN_WORLDWIDE_NTP_POOL_HOSTNAME, nm_bsp_init(), NULL, tstrWifiInitParam::pfAppWifiCb, SNTP_ENABLE_DHCP, socketInit(), STRING_HEADER, sysclk_init(), and wifi_cb().
|
static |
Callback to get the Wi-Fi status update.
[in] | u8MsgType | Type of Wi-Fi notification. |
[in] | pvMsg | A pointer to a buffer containing the notification parameters. |
References gbConnectedWifi, M2M_WIFI_CH_ALL, m2m_wifi_connect(), M2M_WIFI_CONNECTED, M2M_WIFI_DISCONNECTED, M2M_WIFI_REQ_DHCP_CONF, M2M_WIFI_RESP_CON_STATE_CHANGED, M2M_WIFI_RESP_GET_SYS_TIME, MAIN_WLAN_AUTH, MAIN_WLAN_PSK, MAIN_WLAN_SSID, tstrM2mWifiStateChanged::u8CurrState, tstrSystemTime::u8Hour, tstrSystemTime::u8Minute, and tstrSystemTime::u8Second.
Referenced by main().