An application to log WiFi SSIDs for position lookup testing

Dependencies:   C027_Support SWO mbed-rtos mbed picojson

Fork of lpc4088_ebb_ublox_Cellular_PubNubDemo_rtos by EmbeddedArtists AB

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers DeviceMemory.h Source File

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 };