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:
2016-08-08
Revision:
139:f8ab852e83e7
Parent:
117:5de54f09f754

File content as of revision 139:f8ab852e83e7:

#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