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.

Committer:
dudnwjs
Date:
Mon Jun 22 07:36:06 2015 +0000
Revision:
1:5cf3a6c969be
Parent:
0:a1f6b1ba8a1e
Child:
2:dba344c91bce
Basic Program Coding Complete

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dudnwjs 0:a1f6b1ba8a1e 1 #ifndef BLEMSGHANDLER_H
dudnwjs 0:a1f6b1ba8a1e 2 #define BLEMSGHANDLER_H
dudnwjs 0:a1f6b1ba8a1e 3
dudnwjs 0:a1f6b1ba8a1e 4 #include "mbed.h"
dudnwjs 0:a1f6b1ba8a1e 5 #include "MsgQueue.h"
dudnwjs 0:a1f6b1ba8a1e 6
dudnwjs 0:a1f6b1ba8a1e 7 namespace sevencore_fota{
dudnwjs 0:a1f6b1ba8a1e 8
dudnwjs 1:5cf3a6c969be 9 class BleMsgHandler
dudnwjs 0:a1f6b1ba8a1e 10 {
dudnwjs 0:a1f6b1ba8a1e 11 public:
dudnwjs 1:5cf3a6c969be 12 BleMsgHandler(Serial* _device);
dudnwjs 1:5cf3a6c969be 13 BleMsgHandler(Serial* _device, Serial* _hostpc);
dudnwjs 1:5cf3a6c969be 14 ~BleMsgHandler(void);
dudnwjs 0:a1f6b1ba8a1e 15 void PrintTitle(void);
dudnwjs 0:a1f6b1ba8a1e 16
dudnwjs 0:a1f6b1ba8a1e 17
dudnwjs 0:a1f6b1ba8a1e 18 private:
dudnwjs 0:a1f6b1ba8a1e 19 bool print_flag;
dudnwjs 0:a1f6b1ba8a1e 20 Serial* device;
dudnwjs 0:a1f6b1ba8a1e 21 Serial* hostpc;
dudnwjs 1:5cf3a6c969be 22 };
dudnwjs 0:a1f6b1ba8a1e 23
dudnwjs 0:a1f6b1ba8a1e 24 }//namespace
dudnwjs 0:a1f6b1ba8a1e 25
dudnwjs 1:5cf3a6c969be 26 #endif //BLEMSGHANDLER_H