research application on sending data to headend

Dependencies:   DataStore JobScheduler NetworkServices W5500Interface nanopb protocol

See "main.cpp" documentation on "API Documentation" tab for details about application.

Revision:
16:bef1673b199e
Parent:
7:c4123a87abe2
Child:
27:60c12f3f3430
--- a/source/lceProxy.h	Thu Aug 03 19:04:06 2017 +0000
+++ b/source/lceProxy.h	Thu Aug 03 20:57:50 2017 +0000
@@ -1,11 +1,12 @@
 #pragma once
 
 #include "mbed.h"
+#include "config.h"
 
 class LceProxy {
     public:
     
-    LceProxy(NetworkInterface& ni, const char* sn): _ni(ni), _sn(sn) {}
+    LceProxy(NetworkInterface& ni, Config conf): _ni(ni), _conf(conf) {}
     
     /**
     Sends data using Version 1 protocol.
@@ -15,5 +16,5 @@
     private:
     
     NetworkInterface& _ni;
-    const char* _sn;
+    Config _conf;
 };