Own fork of MbedSmartRestMain

Dependencies:   C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed

Fork of MbedSmartRestMain by Cumulocity Official

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers DeviceBootstrap.h Source File

DeviceBootstrap.h

00001 #ifndef DEVICEBOOTSTRAP_H
00002 #define DEVICEBOOTSTRAP_H
00003 
00004 #include <stddef.h>
00005 #include "DeviceInfo.h"
00006 
00007 
00008 class DeviceBootstrap
00009 {
00010 public:
00011     DeviceBootstrap(DeviceInfo& d): deviceInfo(d) {}
00012     bool bootstrap();
00013 
00014 protected:
00015     bool obtainFromPlatform();
00016 
00017 private:
00018     DeviceInfo& deviceInfo;
00019 };
00020 
00021 #endif