WiFi example for mbed OS, fork from https://github.com/ARMmbed/mbed-os-example-wifi

This is a quick example of a simple WiFi application using the WiFi and network-socket APIs that is provided as a part of mbed-os

The program brings up the WiFi and the underlying network interface, and uses it to scans available networks, connects to a network, prints interface and connection details and performs simple HTTP operation.

This example has been used on the following platforms

Note: The ISM43362 WIFI Driver developed by ST Team can also be integrated in the mbed-os-example-client example.

DISCO_L475VG_IOT01A DISCO_F413ZH

Committer:
adustm
Date:
Tue Feb 27 14:07:49 2018 +0100
Revision:
58:8d4bde75ebb9
Parent:
44:63be19b7a3db
Add DISCO_F413ZH (using ism43362 driver)

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 44:63be19b7a3db 1 {
mbed_official 44:63be19b7a3db 2 "config": {
mbed_official 44:63be19b7a3db 3 "wifi-shield": {
mbed_official 44:63be19b7a3db 4 "help": "Options are internal, WIFI_ESP8266, WIFI_IDW0XX1",
mbed_official 44:63be19b7a3db 5 "value": "WIFI_IDW0XX1"
mbed_official 44:63be19b7a3db 6 },
mbed_official 44:63be19b7a3db 7 "wifi-ssid": {
mbed_official 44:63be19b7a3db 8 "help": "WiFi SSID",
mbed_official 44:63be19b7a3db 9 "value": "\"SSID\""
mbed_official 44:63be19b7a3db 10 },
mbed_official 44:63be19b7a3db 11 "wifi-password": {
mbed_official 44:63be19b7a3db 12 "help": "WiFi Password",
mbed_official 44:63be19b7a3db 13 "value": "\"PASSWORD\""
mbed_official 44:63be19b7a3db 14 },
mbed_official 44:63be19b7a3db 15 "wifi-tx": {
mbed_official 44:63be19b7a3db 16 "help": "TX pin for serial connection to external device",
mbed_official 44:63be19b7a3db 17 "value": "D8"
mbed_official 44:63be19b7a3db 18 },
mbed_official 44:63be19b7a3db 19 "wifi-rx": {
mbed_official 44:63be19b7a3db 20 "help": "RX pin for serial connection to external device",
mbed_official 44:63be19b7a3db 21 "value": "D2"
mbed_official 44:63be19b7a3db 22 }
mbed_official 44:63be19b7a3db 23 },
mbed_official 44:63be19b7a3db 24 "target_overrides": {
mbed_official 44:63be19b7a3db 25 "*": {
mbed_official 44:63be19b7a3db 26 "platform.stdio-convert-newlines": true,
mbed_official 44:63be19b7a3db 27 "idw0xx1.expansion-board": "IDW04A1",
mbed_official 44:63be19b7a3db 28 "drivers.uart-serial-txbuf-size": 750,
mbed_official 44:63be19b7a3db 29 "drivers.uart-serial-rxbuf-size": 750
mbed_official 44:63be19b7a3db 30 },
mbed_official 44:63be19b7a3db 31 "UBLOX_EVK_ODIN_W2": {
mbed_official 44:63be19b7a3db 32 "target.device_has": ["EMAC"]
mbed_official 44:63be19b7a3db 33 }
mbed_official 44:63be19b7a3db 34 },
mbed_official 44:63be19b7a3db 35 "macros": ["IDW04A1_WIFI_HW_BUG_WA"]
mbed_official 44:63be19b7a3db 36 }