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 09:43:13 2015 +0000
Revision:
2:dba344c91bce
Parent:
1:5cf3a6c969be
Child:
3:1e70387e1337
Add Serial Manager;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dudnwjs 0:a1f6b1ba8a1e 1 #include "BleMsgHandler.h"
dudnwjs 0:a1f6b1ba8a1e 2
dudnwjs 0:a1f6b1ba8a1e 3 namespace sevencore_fota{
dudnwjs 0:a1f6b1ba8a1e 4
dudnwjs 0:a1f6b1ba8a1e 5 BleMsgHandler::BleMsgHandler(Serial *_device)
dudnwjs 0:a1f6b1ba8a1e 6 {
dudnwjs 0:a1f6b1ba8a1e 7 print_flag = 0;
dudnwjs 0:a1f6b1ba8a1e 8 device = _device;
dudnwjs 2:dba344c91bce 9 SerialM = new SerialManager(_device);
dudnwjs 0:a1f6b1ba8a1e 10 }
dudnwjs 0:a1f6b1ba8a1e 11
dudnwjs 0:a1f6b1ba8a1e 12 BleMsgHandler::BleMsgHandler(Serial *_device, Serial *_hostpc)
dudnwjs 0:a1f6b1ba8a1e 13 {
dudnwjs 0:a1f6b1ba8a1e 14 print_flag = 1;
dudnwjs 0:a1f6b1ba8a1e 15 device = _device;
dudnwjs 0:a1f6b1ba8a1e 16 hostpc = _hostpc;
dudnwjs 2:dba344c91bce 17 SerialM = new SerialManager(_device,_hostpc);
dudnwjs 0:a1f6b1ba8a1e 18 }
dudnwjs 0:a1f6b1ba8a1e 19
dudnwjs 1:5cf3a6c969be 20 BleMsgHandler::~BleMsgHandler(void)
dudnwjs 1:5cf3a6c969be 21 {
dudnwjs 2:dba344c91bce 22 free(SerialM);
dudnwjs 1:5cf3a6c969be 23 }
dudnwjs 1:5cf3a6c969be 24
dudnwjs 0:a1f6b1ba8a1e 25 void BleMsgHandler::PrintTitle(void)
dudnwjs 0:a1f6b1ba8a1e 26 {
dudnwjs 0:a1f6b1ba8a1e 27 if( print_flag == 1 )
dudnwjs 0:a1f6b1ba8a1e 28 hostpc->printf("Sevencore Fota : BleMsg Handler Start\n");
dudnwjs 0:a1f6b1ba8a1e 29 }
dudnwjs 0:a1f6b1ba8a1e 30
dudnwjs 0:a1f6b1ba8a1e 31 }//namespace