Bluetooth Low Energy based Firmware Over The Air with Mbed. Mbed part is a external processor of the IoT devices and communicate with a Bluetooth module. The Bluetooth module have to support BLE and implement BLE FOTA profile designed by ours. BLE FOTA profile specification is available from our GIT hub wiki(https://github.com/sevencore/BLEFOTA).

Dependencies:   mbed

Fork of mbed_fota by KIM HyoengJun

Bluetooth Low Energy based Firmware Over The Air with Mbed. Mbed part is a external processor of the IoT devices and communicate with a Bluetooth module. The Bluetooth module have to support BLE and implement BLE FOTA profile designed by ours. BLE FOTA profile specification is available from our GIT hub wiki.

Revision:
4:60be78a172c2
Parent:
3:1e70387e1337
Child:
5:e11b23f9aacc
--- a/main.cpp	Tue Jun 23 06:32:40 2015 +0000
+++ b/main.cpp	Wed Jun 24 08:50:07 2015 +0000
@@ -18,8 +18,11 @@
     
     app_rst_gap(&myfota);
     
-    myfota.BleReceiveMsg();
-    myfota.BleMsgHandle();
+    for(int i = 0; i < 10; i++)
+    {
+        myfota.BleReceiveMsg();
+        myfota.BleMsgHandle();
+    }
     
     
     while(1) {