This library can be used in mbed driver or mbed OS2. So If you want to use WizFi310 on mbed OS5, You have to use another WizFi310 library(wizfi310-driver). That is git repository for wizfi310-driver. - https://github.com/ARMmbed/wizfi310-driver

Dependents:   KT_IoTMakers_WizFi310_Example WizFi310_STATION_HelloWorld WizFi310_DNS_TCP_HelloWorld WizFi310_Ubidots ... more

This library can be used in mbed driver or mbed OS2. So If you want to use WizFi310 on mbed OS5, You have to use another WizFi310 library(wizfi310-driver).

That is git repository for wizfi310-driver. - https://github.com/ARMmbed/wizfi310-driver

Revision:
0:df571f8f8c03
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/WizFi310/WizFi310_ifc.cpp	Wed Oct 05 09:40:30 2016 +0000
@@ -0,0 +1,46 @@
+/* WizFi310 
+ * Copyright (c) 2015 ARM Limited
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+#include "WizFi310.h"
+
+bool WizFi310::startup(void)
+{
+    reset();
+
+    cmdAT();
+    if( cmdMECHO(false) == -1)  return false;
+    //if( cmdMECHO(true) == -1) return false;
+    if(_cts != NULL && _rts != NULL)
+    {
+        if( cmdUSET(_baud,"HW") == -1)  return false;
+    }
+    else
+    {
+        if( cmdUSET(_baud,"N") == -1)   return false;
+    }
+    wait_ms(1000);
+    if( cmdAT() == -1)          return false;
+
+    return true;
+}
+
+bool WizFi310::reset(void)
+{
+    _reset = 0;
+    wait_ms(500);
+    _reset = 1;
+
+    return true;
+}