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 SWO mbed-rtos mbed picojson
Fork of lpc4088_ebb_ublox_Cellular_PubNubDemo_rtos by
DeviceMemory.h
00001 #pragma once 00002 00003 #include <stddef.h> 00004 #include "MDM.h" 00005 00006 /** 00007 * Device Memory storage handler 00008 */ 00009 class DeviceMemory 00010 { 00011 public: 00012 DeviceMemory(MDMSerial&); 00013 00014 /** loads configuration from persistent memory */ 00015 bool loadConfiguration(char*, size_t); 00016 00017 /** saves configuration to persistent memory */ 00018 bool saveConfiguration(char*); 00019 00020 /** removes configuration from persistent memory */ 00021 bool resetConfiguration(); 00022 00023 private: 00024 MDMSerial& _mdm; 00025 };
Generated on Sun Jul 17 2022 02:39:36 by
1.7.2
