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

Committer:
rosterloh84
Date:
Sun Feb 15 22:04:12 2015 +0000
Revision:
1:cac9b2960637
First working version. Lots to do still.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
rosterloh84 1:cac9b2960637 1 #pragma once
rosterloh84 1:cac9b2960637 2
rosterloh84 1:cac9b2960637 3 #include <stddef.h>
rosterloh84 1:cac9b2960637 4 #include "DeviceConfiguration.h"
rosterloh84 1:cac9b2960637 5
rosterloh84 1:cac9b2960637 6 #define CONFIGURATION_PROPERTY_INTERVAL "300"
rosterloh84 1:cac9b2960637 7
rosterloh84 1:cac9b2960637 8 class ConfigurationProperties
rosterloh84 1:cac9b2960637 9 {
rosterloh84 1:cac9b2960637 10 public:
rosterloh84 1:cac9b2960637 11 ConfigurationProperties(DeviceConfiguration&);
rosterloh84 1:cac9b2960637 12
rosterloh84 1:cac9b2960637 13 bool resetConfiguration();
rosterloh84 1:cac9b2960637 14 bool validateProperties();
rosterloh84 1:cac9b2960637 15
rosterloh84 1:cac9b2960637 16 int readInterval();
rosterloh84 1:cac9b2960637 17
rosterloh84 1:cac9b2960637 18 private:
rosterloh84 1:cac9b2960637 19 DeviceConfiguration& _deviceConfiguration;
rosterloh84 1:cac9b2960637 20 };