Doug Anson / mbedConnectorInterface

Dependents:   IoT_LED_demo ServoTest uWater_Project hackathon ... more

Revision:
5:a929d65eb385
Parent:
2:853f9ecc12df
--- a/api/Endpoint.h	Wed Jan 28 12:11:22 2015 +0000
+++ b/api/Endpoint.h	Wed Jan 28 14:43:46 2015 +0000
@@ -55,27 +55,25 @@
     virtual ~Endpoint();
 
     /**
-    Plumb the underlying network
-    @param canActAsRouterNode input boolean indicating whether this node can act as a router node or not.
-    */
-    static void plumbNetwork(bool canActAsRouterNode = false);
-
-    /**
-    Initialize the endpoint
+    Initialize the endpoint configuration
     */
     void initialize();
 
     /**
-    Finalize the endpoint's configuration and begin the endpoint's main even loop
+    Plumb the lower RF network stack
+    @param canActAsRouterNode input boolean indicating whether this node can act as a router node or not.
+    */
+    static void plumbNetwork(bool canActAsRouterNode = false);
+    
+    /**
+    Initialize the endpoint's configuration and begin the endpoint's main even loop
     */
     static void start();
 
-protected:
-
 private:
     Logger         *m_logger;
     Options        *m_options;
-
+    
     // initialize the NSDL network
     void initNetwork();