Marcelo Rebonatto / Mbed 2 deprecated Protegemed_limpo

Dependencies:   EthernetInterface mbed-rtos mbed NTPClient

Committer:
rebonatto
Date:
Thu Sep 04 19:40:18 2014 +0000
Revision:
0:66d8bd1f9d4c
Child:
2:628a25bb5d62
Vers?o do protegemed com limpeza da memoria. Est? com mailbox de 10 posi??es e telnet funcinando.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
rebonatto 0:66d8bd1f9d4c 1 /*
rebonatto 0:66d8bd1f9d4c 2 * Settings.h
rebonatto 0:66d8bd1f9d4c 3 *
rebonatto 0:66d8bd1f9d4c 4 * Created on:
rebonatto 0:66d8bd1f9d4c 5 * Author:
rebonatto 0:66d8bd1f9d4c 6 */
rebonatto 0:66d8bd1f9d4c 7
rebonatto 0:66d8bd1f9d4c 8 #ifndef SETTINGS_H
rebonatto 0:66d8bd1f9d4c 9 #define SETTINGS_H
rebonatto 0:66d8bd1f9d4c 10
rebonatto 0:66d8bd1f9d4c 11 #include <stdio.h>
rebonatto 0:66d8bd1f9d4c 12 #include <string.h>
rebonatto 0:66d8bd1f9d4c 13 #include <ctype.h>
rebonatto 0:66d8bd1f9d4c 14
rebonatto 0:66d8bd1f9d4c 15 #include "mbed.h"
rebonatto 0:66d8bd1f9d4c 16 #include "EthernetInterface.h"
rebonatto 0:66d8bd1f9d4c 17
rebonatto 0:66d8bd1f9d4c 18 #include "Split.h"
rebonatto 0:66d8bd1f9d4c 19
rebonatto 0:66d8bd1f9d4c 20 #define FILENAME "/local/pmed.txt"
rebonatto 0:66d8bd1f9d4c 21 #define FILENAMERESET "/local/foi.txt"
rebonatto 0:66d8bd1f9d4c 22 #define FREQBASE 60U
rebonatto 0:66d8bd1f9d4c 23 #define NUMBER_OF_CHANNELS 6U
rebonatto 0:66d8bd1f9d4c 24 #define NUMBER_OF_OUTLETS 3U
rebonatto 0:66d8bd1f9d4c 25 #define NUMBER_OF_HARMONICS 12U
rebonatto 0:66d8bd1f9d4c 26 #define NUMBER_OF_SAMPLES 256U
rebonatto 0:66d8bd1f9d4c 27 #define LENGTH_MAIL_BOX 10U
rebonatto 0:66d8bd1f9d4c 28 #define MAXTRIES 10U
rebonatto 0:66d8bd1f9d4c 29
rebonatto 0:66d8bd1f9d4c 30 class Settings
rebonatto 0:66d8bd1f9d4c 31 {
rebonatto 0:66d8bd1f9d4c 32
rebonatto 0:66d8bd1f9d4c 33 //server URL
rebonatto 0:66d8bd1f9d4c 34 static char* m_serverurl;
rebonatto 0:66d8bd1f9d4c 35 //module number
rebonatto 0:66d8bd1f9d4c 36 static int m_module_number;
rebonatto 0:66d8bd1f9d4c 37 //ip address
rebonatto 0:66d8bd1f9d4c 38 static char* m_ipaddress;
rebonatto 0:66d8bd1f9d4c 39 //netmask
rebonatto 0:66d8bd1f9d4c 40 static char* m_netmask;
rebonatto 0:66d8bd1f9d4c 41 //gateway
rebonatto 0:66d8bd1f9d4c 42 static char* m_gateway;
rebonatto 0:66d8bd1f9d4c 43 //dhcp
rebonatto 0:66d8bd1f9d4c 44 static int m_dhcp;
rebonatto 0:66d8bd1f9d4c 45
rebonatto 0:66d8bd1f9d4c 46 //gain x6(float)
rebonatto 0:66d8bd1f9d4c 47 static float m_gain[NUMBER_OF_CHANNELS];
rebonatto 0:66d8bd1f9d4c 48 //offset x6(int)
rebonatto 0:66d8bd1f9d4c 49 static int m_offset[NUMBER_OF_CHANNELS];
rebonatto 0:66d8bd1f9d4c 50 //limit x6(float)
rebonatto 0:66d8bd1f9d4c 51 static float m_limit[NUMBER_OF_CHANNELS];
rebonatto 0:66d8bd1f9d4c 52 //outlet x6 (int)
rebonatto 0:66d8bd1f9d4c 53 static int m_outlet_number[NUMBER_OF_CHANNELS];
rebonatto 0:66d8bd1f9d4c 54 //purpose x6(char)
rebonatto 0:66d8bd1f9d4c 55 static char m_purpose[NUMBER_OF_CHANNELS];
rebonatto 0:66d8bd1f9d4c 56
rebonatto 0:66d8bd1f9d4c 57 //outlet x3(int)
rebonatto 0:66d8bd1f9d4c 58 static int m_outlet[NUMBER_OF_OUTLETS];
rebonatto 0:66d8bd1f9d4c 59
rebonatto 0:66d8bd1f9d4c 60 //MaxChannels
rebonatto 0:66d8bd1f9d4c 61 //static int m_MaxChannels;
rebonatto 0:66d8bd1f9d4c 62 //MaxOutlets
rebonatto 0:66d8bd1f9d4c 63 //static int m_MaxOutlets;
rebonatto 0:66d8bd1f9d4c 64 //Samples
rebonatto 0:66d8bd1f9d4c 65 //static int m_Samples;
rebonatto 0:66d8bd1f9d4c 66 //FreqBase
rebonatto 0:66d8bd1f9d4c 67 //static int m_FreqBase;
rebonatto 0:66d8bd1f9d4c 68
rebonatto 0:66d8bd1f9d4c 69 //MaxHarmonics
rebonatto 0:66d8bd1f9d4c 70 static int m_MaxHarmonics;
rebonatto 0:66d8bd1f9d4c 71
rebonatto 0:66d8bd1f9d4c 72 //EventLimit
rebonatto 0:66d8bd1f9d4c 73 static int m_EventLimit;
rebonatto 0:66d8bd1f9d4c 74
rebonatto 0:66d8bd1f9d4c 75 //MailBoxLength
rebonatto 0:66d8bd1f9d4c 76 static int m_MBoxLength;
rebonatto 0:66d8bd1f9d4c 77
rebonatto 0:66d8bd1f9d4c 78 //NumberNeighbors
rebonatto 0:66d8bd1f9d4c 79 //static int m_NumNeighbors;
rebonatto 0:66d8bd1f9d4c 80
rebonatto 0:66d8bd1f9d4c 81 //Neighbors x3(char [16])
rebonatto 0:66d8bd1f9d4c 82 //static char *m_Neighbor[NEIGHBORS];
rebonatto 0:66d8bd1f9d4c 83
rebonatto 0:66d8bd1f9d4c 84 //PortTCP
rebonatto 0:66d8bd1f9d4c 85 //static int m_PortTCP;
rebonatto 0:66d8bd1f9d4c 86
rebonatto 0:66d8bd1f9d4c 87 //Socket to receive requests
rebonatto 0:66d8bd1f9d4c 88 //static TCPSocketServer m_ServerSocket;
rebonatto 0:66d8bd1f9d4c 89
rebonatto 0:66d8bd1f9d4c 90 //Socket to send requests
rebonatto 0:66d8bd1f9d4c 91 //static TCPSocketConnection m_Socket[NEIGHBORS];
rebonatto 0:66d8bd1f9d4c 92
rebonatto 0:66d8bd1f9d4c 93 //Maximum number of try connect and send
rebonatto 0:66d8bd1f9d4c 94 //static int m_MaxTries;
rebonatto 0:66d8bd1f9d4c 95
rebonatto 0:66d8bd1f9d4c 96 //Delay time (ms) between 2 tries
rebonatto 0:66d8bd1f9d4c 97 static int m_DelayTry;
rebonatto 0:66d8bd1f9d4c 98
rebonatto 0:66d8bd1f9d4c 99 //Delay time (ms) after Send (post)
rebonatto 0:66d8bd1f9d4c 100 static int m_DelaySend;
rebonatto 0:66d8bd1f9d4c 101
rebonatto 0:66d8bd1f9d4c 102
rebonatto 0:66d8bd1f9d4c 103 public:
rebonatto 0:66d8bd1f9d4c 104
rebonatto 0:66d8bd1f9d4c 105 Settings();
rebonatto 0:66d8bd1f9d4c 106
rebonatto 0:66d8bd1f9d4c 107 static char* get_ServerUrl() { return m_serverurl; }
rebonatto 0:66d8bd1f9d4c 108 static void set_ServerUrl(char *value)
rebonatto 0:66d8bd1f9d4c 109 {
rebonatto 0:66d8bd1f9d4c 110 if(m_serverurl!=NULL) delete m_serverurl;
rebonatto 0:66d8bd1f9d4c 111 int sz = strlen(value)+1;
rebonatto 0:66d8bd1f9d4c 112 m_serverurl = new char[sz];
rebonatto 0:66d8bd1f9d4c 113 strcpy(m_serverurl,value);
rebonatto 0:66d8bd1f9d4c 114 }
rebonatto 0:66d8bd1f9d4c 115 static char* get_IpAddress() { return m_ipaddress; }
rebonatto 0:66d8bd1f9d4c 116 static void set_IpAddress(char *value)
rebonatto 0:66d8bd1f9d4c 117 {
rebonatto 0:66d8bd1f9d4c 118 if(m_ipaddress!=NULL) delete m_ipaddress;
rebonatto 0:66d8bd1f9d4c 119 int sz = strlen(value)+1;
rebonatto 0:66d8bd1f9d4c 120 m_ipaddress = new char[sz];
rebonatto 0:66d8bd1f9d4c 121 strcpy(m_ipaddress,value);
rebonatto 0:66d8bd1f9d4c 122 }
rebonatto 0:66d8bd1f9d4c 123 static char* get_Netmask() { return m_netmask; }
rebonatto 0:66d8bd1f9d4c 124 static void set_Netmask(char *value)
rebonatto 0:66d8bd1f9d4c 125 {
rebonatto 0:66d8bd1f9d4c 126 if(m_netmask!=NULL) delete m_netmask;
rebonatto 0:66d8bd1f9d4c 127 int sz = strlen(value)+1;
rebonatto 0:66d8bd1f9d4c 128 m_netmask = new char[sz];
rebonatto 0:66d8bd1f9d4c 129 strcpy(m_netmask,value);
rebonatto 0:66d8bd1f9d4c 130 }
rebonatto 0:66d8bd1f9d4c 131
rebonatto 0:66d8bd1f9d4c 132 static char* get_Gateway() { return m_gateway; }
rebonatto 0:66d8bd1f9d4c 133 static void set_Gateway(char *value)
rebonatto 0:66d8bd1f9d4c 134 {
rebonatto 0:66d8bd1f9d4c 135 if(m_gateway!=NULL) delete m_gateway;
rebonatto 0:66d8bd1f9d4c 136 int sz = strlen(value)+1;
rebonatto 0:66d8bd1f9d4c 137 m_gateway = new char[sz];
rebonatto 0:66d8bd1f9d4c 138 strcpy(m_gateway,value);
rebonatto 0:66d8bd1f9d4c 139 }
rebonatto 0:66d8bd1f9d4c 140 static int get_Dhcp() { return m_dhcp; }
rebonatto 0:66d8bd1f9d4c 141 static void set_Dhcp(int value) { m_dhcp = value; }
rebonatto 0:66d8bd1f9d4c 142 static int get_ModuleNumber() { return m_module_number; }
rebonatto 0:66d8bd1f9d4c 143 static void set_ModuleNumber(int value) { m_module_number = value; }
rebonatto 0:66d8bd1f9d4c 144
rebonatto 0:66d8bd1f9d4c 145 static float get_Gain(int i) { return m_gain[i]; }
rebonatto 0:66d8bd1f9d4c 146 static void set_Gain(int i, float value) { m_gain[i] = value; }
rebonatto 0:66d8bd1f9d4c 147 static int get_Offset(int i) { return m_offset[i]; }
rebonatto 0:66d8bd1f9d4c 148 static void set_Offset(int i, int value) { m_offset[i] = value; }
rebonatto 0:66d8bd1f9d4c 149 static float get_Limit(int i) { return m_limit[i]; }
rebonatto 0:66d8bd1f9d4c 150 static void set_Limit(int i, float value) { m_limit[i] = value; }
rebonatto 0:66d8bd1f9d4c 151 static int get_OutletNumber(int i) { return m_outlet_number[i]; }
rebonatto 0:66d8bd1f9d4c 152 static void set_OutletNumber(int i, int value) { m_outlet_number[i] = value; }
rebonatto 0:66d8bd1f9d4c 153 static char get_Purpose(int i) { return m_purpose[i]; }
rebonatto 0:66d8bd1f9d4c 154 static void set_Purpose(int i, char value) { m_purpose[i] = value; }
rebonatto 0:66d8bd1f9d4c 155
rebonatto 0:66d8bd1f9d4c 156 static int get_Outlet(int i) { return m_outlet[i]; }
rebonatto 0:66d8bd1f9d4c 157 static void set_Outlet(int i, int value) { m_outlet[i] = value; }
rebonatto 0:66d8bd1f9d4c 158
rebonatto 0:66d8bd1f9d4c 159 // static int get_MaxChannels() { return m_MaxChannels; }
rebonatto 0:66d8bd1f9d4c 160 // static void set_MaxChannels(int value) { m_MaxChannels = value; }
rebonatto 0:66d8bd1f9d4c 161 // static int get_MaxOutlets() { return m_MaxOutlets; }
rebonatto 0:66d8bd1f9d4c 162 // static void set_MaxOutlets(int value) { m_MaxOutlets = value; }
rebonatto 0:66d8bd1f9d4c 163 // static int get_FreqBase() { return m_FreqBase; }
rebonatto 0:66d8bd1f9d4c 164 // static void set_FreqBase(int value) { m_FreqBase = value; }
rebonatto 0:66d8bd1f9d4c 165 // static int get_Samples() { return m_Samples; }
rebonatto 0:66d8bd1f9d4c 166 // static void set_Samples(int value) { m_Samples = value; }
rebonatto 0:66d8bd1f9d4c 167
rebonatto 0:66d8bd1f9d4c 168 static int get_MaxHarmonics() { return m_MaxHarmonics; }
rebonatto 0:66d8bd1f9d4c 169 static void set_MaxHarmonics(int value) { m_MaxHarmonics = value; }
rebonatto 0:66d8bd1f9d4c 170 static int get_EventLimit() { return m_EventLimit; }
rebonatto 0:66d8bd1f9d4c 171 static void set_EventLimit(int value) { m_EventLimit = value; }
rebonatto 0:66d8bd1f9d4c 172 static int get_MBoxLength() { return m_MBoxLength; }
rebonatto 0:66d8bd1f9d4c 173 static void set_MBoxLength(int value) { m_MBoxLength = value; }
rebonatto 0:66d8bd1f9d4c 174
rebonatto 0:66d8bd1f9d4c 175 // static int get_NumNeighbors() { return m_NumNeighbors; }
rebonatto 0:66d8bd1f9d4c 176 // static void set_NumNeighbors(int value) { m_NumNeighbors = value; }
rebonatto 0:66d8bd1f9d4c 177 // static char* get_Neighbor(int i) { return m_Neighbor[i]; }
rebonatto 0:66d8bd1f9d4c 178 // static void set_Neighbor(int i, char *value)
rebonatto 0:66d8bd1f9d4c 179 // for(...)
rebonatto 0:66d8bd1f9d4c 180 // {
rebonatto 0:66d8bd1f9d4c 181 // if(m_Neighbor[i]!=NULL) delete m_Neighbor[i];
rebonatto 0:66d8bd1f9d4c 182 // int sz = strlen(value)+1;
rebonatto 0:66d8bd1f9d4c 183 // m_Neighbor[i] = new char[sz];
rebonatto 0:66d8bd1f9d4c 184 // strcpy(m_Neighbor[i],value);
rebonatto 0:66d8bd1f9d4c 185 // }
rebonatto 0:66d8bd1f9d4c 186 // static int get_PortTCP() { return m_PortTCP; }
rebonatto 0:66d8bd1f9d4c 187 // static void set_PortTCP(int value) { m_PortTCP = value; }
rebonatto 0:66d8bd1f9d4c 188 // static TCPSocketServer& get_ServerSocket() { return m_ServerSocket; }
rebonatto 0:66d8bd1f9d4c 189 // static void set_ServerSocket(TCPSocketServer value) { m_ServerSocket = value; }
rebonatto 0:66d8bd1f9d4c 190 // static TCPSocketConnection& get_Socket(int i) { return m_Socket[i]; }
rebonatto 0:66d8bd1f9d4c 191 // static void set_Socket(int i, TCPSocketConnection value) { m_Socket[i] = value; }
rebonatto 0:66d8bd1f9d4c 192 // static int get_MaxTries() { return m_MaxTries; }
rebonatto 0:66d8bd1f9d4c 193 // static void set_MaxTries(int value) { m_MaxTries = value; }
rebonatto 0:66d8bd1f9d4c 194
rebonatto 0:66d8bd1f9d4c 195 static int get_DelayTry() { return m_DelayTry; }
rebonatto 0:66d8bd1f9d4c 196 static void set_DelayTry(int value) { m_DelayTry = value; }
rebonatto 0:66d8bd1f9d4c 197
rebonatto 0:66d8bd1f9d4c 198 static int get_DelaySend() { return m_DelaySend; }
rebonatto 0:66d8bd1f9d4c 199 static void set_DelaySend(int value) { m_DelaySend = value; }
rebonatto 0:66d8bd1f9d4c 200
rebonatto 0:66d8bd1f9d4c 201 static void ReadFile(); //Read the config file and places the values in the internal variables
rebonatto 0:66d8bd1f9d4c 202 static void LoadDefaults();
rebonatto 0:66d8bd1f9d4c 203 static void WriteFile();
rebonatto 0:66d8bd1f9d4c 204 static void ShowValues();
rebonatto 0:66d8bd1f9d4c 205
rebonatto 0:66d8bd1f9d4c 206 };
rebonatto 0:66d8bd1f9d4c 207
rebonatto 0:66d8bd1f9d4c 208 #endif //#ifndef SETTINGS