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/gapm_task.h	Thu Aug 20 05:16:55 2015 +0000
+++ b/dialog_fota/gapm_task.h	Mon Aug 24 02:29:16 2015 +0000
@@ -4,6 +4,14 @@
 #include "dialog_fota_config.h"
 #include "gap.h"
 
+/**
+ ****************************************************************************************
+ * @addtogroup dialog_fota module
+ * @brief Generic Access Profile Manager Task Header.
+ *
+ * @{
+ ****************************************************************************************
+ */
 namespace sevencore_fota{
 
 /// Advertising or scanning report information event
@@ -87,9 +95,6 @@
     uint8_t              scan_rsp_data[SCAN_RSP_DATA_LEN];
 };
 
-
-
-
 /// Set advertising mode Command
 struct gapm_start_advertise_cmd
 {
@@ -118,7 +123,6 @@
     } info;
 };
 
-
 /// Set device configuration command
 struct gapm_set_dev_config_cmd
 {
@@ -158,8 +162,6 @@
     uint8_t flags;
 };
 
-
-
 /// GAP Manager Message Interface
 enum gapm_msg_id
 {
@@ -386,4 +388,6 @@
 
 }//namespace
 
+/// @} dialog_fota module
+
 #endif//GAPM_TASK_H