Core Base Classes for the Light Endpoints

Dependencies:   BufferedSerial

Dependents:   mbed_mqtt_endpoint_ublox_ethernet mbed_mqtt_endpoint_ublox_cellular mbed_nsp_endpoint_ublox_cellular mbed_nsp_endpoint_ublox_ethernet ... more

Committer:
ansond
Date:
Thu Mar 20 02:24:47 2014 +0000
Revision:
120:edf33bd41e4f
Parent:
118:c8a80adfe90d
Child:
135:7f3f963cd159
updates

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ansond 112:1fb53d4729af 1 /* Copyright C2013 Doug Anson, MIT License
ansond 112:1fb53d4729af 2 *
ansond 112:1fb53d4729af 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
ansond 112:1fb53d4729af 4 * and associated documentation files the "Software", to deal in the Software without restriction,
ansond 112:1fb53d4729af 5 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
ansond 112:1fb53d4729af 6 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
ansond 112:1fb53d4729af 7 * furnished to do so, subject to the following conditions:
ansond 112:1fb53d4729af 8 *
ansond 112:1fb53d4729af 9 * The above copyright notice and this permission notice shall be included in all copies or
ansond 112:1fb53d4729af 10 * substantial portions of the Software.
ansond 112:1fb53d4729af 11 *
ansond 112:1fb53d4729af 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
ansond 112:1fb53d4729af 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
ansond 112:1fb53d4729af 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
ansond 112:1fb53d4729af 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
ansond 112:1fb53d4729af 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
ansond 112:1fb53d4729af 17 */
ansond 112:1fb53d4729af 18
ansond 112:1fb53d4729af 19 #ifndef _PREFERENCES_H_
ansond 112:1fb53d4729af 20 #define _PREFERENCES_H_
ansond 112:1fb53d4729af 21
ansond 112:1fb53d4729af 22 #include "mbed.h"
ansond 112:1fb53d4729af 23 #include "ErrorHandler.h"
ansond 112:1fb53d4729af 24
ansond 112:1fb53d4729af 25 class Preferences {
ansond 112:1fb53d4729af 26 private:
ansond 112:1fb53d4729af 27 ErrorHandler *m_error_handler;
ansond 118:c8a80adfe90d 28 char m_names[MAX_NUM_PREFERENCES][PREFERENCE_NAME_LEN+1];
ansond 118:c8a80adfe90d 29 char m_values[MAX_NUM_PREFERENCES][PREFERENCE_VALUE_LEN+1];
ansond 118:c8a80adfe90d 30 int m_num_preferences;
ansond 118:c8a80adfe90d 31
ansond 112:1fb53d4729af 32 public:
ansond 112:1fb53d4729af 33 Preferences(ErrorHandler *error_handler);
ansond 112:1fb53d4729af 34 ~Preferences();
ansond 112:1fb53d4729af 35
ansond 112:1fb53d4729af 36 int numPreferences();
ansond 112:1fb53d4729af 37 char *getPreference(char *name,char *buffer,int buffer_length,char *def_value);
ansond 112:1fb53d4729af 38 int getIntPreference(char *name,int def_value);
ansond 112:1fb53d4729af 39 bool getBooleanPreference(char *name,bool def_value);
ansond 112:1fb53d4729af 40
ansond 120:edf33bd41e4f 41 void fixCoordsForIOC();
ansond 120:edf33bd41e4f 42
ansond 112:1fb53d4729af 43 private:
ansond 112:1fb53d4729af 44 bool initialize();
ansond 112:1fb53d4729af 45 ErrorHandler *logger();
ansond 112:1fb53d4729af 46
ansond 112:1fb53d4729af 47 int indexOfPreference(char *name);
ansond 112:1fb53d4729af 48 int min(int value1,int value2);
ansond 112:1fb53d4729af 49 };
ansond 112:1fb53d4729af 50
ansond 112:1fb53d4729af 51 #endif // _PREFERENCES_H_