Official reference client implementation for Cumulocity SmartREST on u-blox C027.

Dependencies:   C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed

Fork of MbedSmartRestMain by Vincent Wochnik

DeviceBootstrap.h

Committer:
xinlei
Date:
2015-05-20
Revision:
117:5de54f09f754
Parent:
113:3872569be2af

File content as of revision 117:5de54f09f754:

#ifndef DEVICEBOOTSTRAP_H
#define DEVICEBOOTSTRAP_H

#include <stddef.h>
#include "DeviceInfo.h"


class DeviceBootstrap
{
public:
    DeviceBootstrap(DeviceInfo& d): deviceInfo(d) {}
    bool bootstrap();

protected:
    bool obtainFromPlatform();

private:
    DeviceInfo& deviceInfo;
};

#endif