Turn down WIFI_API_DEBUG_LOG in wifi_api.h

Fork of WIFI_API_32kRAM by Delta

Committer:
wgd8700
Date:
Thu Oct 29 02:25:30 2015 +0000
Revision:
16:1f9ff91a63c2
Parent:
15:d4e992043905
Child:
18:208b8038c94a
update README.md

Who changed what in which revision?

UserRevisionLine numberNew contents of line
wgd8700 15:d4e992043905 1 # NNN40 WI-FI SDK version 20151021, release at 2015/10/21
Marcomissyou 0:4085cc9441f3 2 This is the export repo for the WIFI_API provided by Delta Electronics, Inc.
Marcomissyou 0:4085cc9441f3 3
wgd8700 1:9b27c8fda456 4 # Highlight of this release
wgd8700 15:d4e992043905 5 * Add receive_all packet buffering used for Websocket.recv
wgd8700 1:9b27c8fda456 6
wgd8700 1:9b27c8fda456 7 # Major supported features
wgd8700 5:d20c2d97258a 8 * Set TCP maximum payload to 1400 bytes (Max. throughput achieve ~7.5KB)
wgd8700 5:d20c2d97258a 9 * Set UDP maximum payload to 1400 bytes (Max. throughput achieve ~20KB)
Marcomissyou 0:4085cc9441f3 10 * Support DNS client for TCP/UDP
Marcomissyou 0:4085cc9441f3 11 * Fast AP re-connection is performed automatically, user can call EthernetInterface.disconnect() to have lowest power consumption of 4uA, then call init and connected to previous AP for less than 4 sec
wgd8700 16:1f9ff91a63c2 12 * Support BLE and WIFI coexistence (refer to WIFIDevice.h)
wgd8700 16:1f9ff91a63c2 13 * Support SoftAP mode (refer to sample code NNN40_WiFi_SoftAP)
wgd8700 16:1f9ff91a63c2 14 * Support Websocket library (refer to sample code NNN40_Websocket)
wgd8700 16:1f9ff91a63c2 15 * Support XmppClient library (refer to sample code NNN40XmppClient)
wgd8700 16:1f9ff91a63c2 16 * Support http server (refer to sample code NNN40_APmodeToSTAmodeByHTTPServer)
Marcomissyou 0:4085cc9441f3 17
wgd8700 11:659b13c3437a 18 # Roadmap
wgd8700 5:d20c2d97258a 19 * Support light weight SSL (modified from CyaSSL)
wgd8700 16:1f9ff91a63c2 20 * Support ARM RTX (RTOS)
wgd8700 1:9b27c8fda456 21
wgd8700 1:9b27c8fda456 22 # Supported functionalities of embeded Wi-Fi chipset
Marcomissyou 0:4085cc9441f3 23 Currently supported functionalities include:
Marcomissyou 0:4085cc9441f3 24 * IEEE 802.11 b/g/n connectivity
Marcomissyou 0:4085cc9441f3 25 * Station (STA) infrastructure mode
wgd8700 7:91824a659c5b 26 * Soft AP mode with DHCP server, user must DnD SoftAP_FW_update.hex to DELTA folder to update internal flash (only need to perform once)
Marcomissyou 0:4085cc9441f3 27 * WEP/WPA/WPA2 security
Marcomissyou 0:4085cc9441f3 28 * DHCP Client and Static IPv4 addressing
Marcomissyou 0:4085cc9441f3 29 * TCP Server/Client
Marcomissyou 0:4085cc9441f3 30 * UDP Server/Client
wgd8700 13:cb69aaed5e8b 31 * WIFI BLE coexistence
Marcomissyou 0:4085cc9441f3 32
Marcomissyou 0:4085cc9441f3 33 # Getting Started
Marcomissyou 0:4085cc9441f3 34 This WIFI API is meant to be used on Delta NNN40 EVB.
Marcomissyou 0:4085cc9441f3 35 A good starting point are these pages:
Marcomissyou 0:4085cc9441f3 36 * [WI-FI SDK User Guide](document come with WI-FI SDK deliver) for system overview, APIs summary and sample code
Marcomissyou 0:4085cc9441f3 37 * [EthernetInterface - Handbook](http://developer.mbed.org/handbook/Ethernet-Interface) a simple API that you will need to connect to the internet.
Marcomissyou 0:4085cc9441f3 38 * [Socket - Handbook](http://developer.mbed.org/handbook/Socket) a simple and consistent way to communicate using bsd-like TCP and UDP sockets over WI-FI