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

Dependencies:   WizFi310Interface_Draft

Fork of mbed-os-example-mbed5-wifi by mbed-os-examples

Files at this revision

API Documentation at this revision

Comitter:
mbed_official
Date:
Thu Jun 22 10:30:04 2017 +0100
Parent:
20:96a02c200c38
Child:
22:887649aaedcb
Commit message:
Add Realtek RTL8195A support

.
Commit copied from https://github.com/ARMmbed/mbed-os-example-wifi

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Thu Jun 22 09:45:03 2017 +0100
+++ b/main.cpp	Thu Jun 22 10:30:04 2017 +0100
@@ -21,12 +21,16 @@
 #include "OdinWiFiInterface.h"
 OdinWiFiInterface wifi;
 
+#elif TARGET_REALTEK_RTL8195AM
+#include "RTWInterface.h"
+RTWInterface wifi;
+
 #else
 #if !TARGET_FF_ARDUINO
 #error [NOT_SUPPORTED] Only Arduino form factor devices are supported at this time
 #endif
+
 #include "ESP8266Interface.h"
-
 ESP8266Interface wifi(MBED_CONF_APP_WIFI_TX, MBED_CONF_APP_WIFI_RX);
 
 #endif