Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed
Fork of MbedSmartRestMain by
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
Generated on Sat Jul 16 2022 07:10:59 by
1.7.2
