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:
9:fcf91f563147
Parent:
5:e11b23f9aacc
Child:
10:18044afe4364
--- a/dialog_fota/gap.h	Thu Aug 20 05:16:55 2015 +0000
+++ b/dialog_fota/gap.h	Mon Aug 24 02:29:16 2015 +0000
@@ -2,6 +2,15 @@
 #define GAP_H
 #include "dialog_fota_config.h"
 
+/**
+ ****************************************************************************************
+ * @addtogroup dialog_fota module
+ * @brief Generic Access Profile.
+ *
+ * @{
+ ****************************************************************************************
+ */
+
 namespace sevencore_fota{
 
 #define KEY_LEN             0x10
@@ -35,7 +44,8 @@
     /// Broadcaster mode which is a non discoverable and non connectable mode.
     GAP_BROADCASTER_MODE,
 };
-/****************** GAP Role **********************/
+
+/// Role GAP
 enum gap_role
 {
     /// No role set yet
@@ -89,7 +99,9 @@
     /// Authorization request automatically rejected
     GAP_AUTHZ_REJECT  = 0x02,
 };
+    
+}//namespace
 
-//////////////~GAP~    
-}//namespace
+/// @} dialog_fota module
+
 #endif//GAP_H
\ No newline at end of file