observe fixes

Dependencies:   nanoservice_client_1_12_X Nanostack_lib

Fork of mbedEndpointNetwork_6LowPAN by Doug Anson

Revision:
0:2a5a48a8b4d4
Child:
4:2c8eeaf31699
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/NSDL/nsdl_support.h	Sun Feb 01 18:26:13 2015 +0000
@@ -0,0 +1,45 @@
+// Support functions for the NSDL library
+
+#ifndef NSDL_SUPPORT_H
+#define NSDL_SUPPORT_H
+
+#include "mbed.h"
+#include <stdint.h>
+
+#include "sn_nsdl.h"
+#include "sn_coap_header.h"
+#include "sn_coap_protocol.h"
+#include "sn_nsdl_lib.h"
+
+#include "mbedConnectorInterface.h"
+
+// ************************* MDS CONFIGURATION *********************************
+
+extern uint8_t NSP_address_bytes[NSP_IP_ADDRESS_LENGTH];    // which MDS instance we want to bind to...
+extern uint8_t endpoint_name[NODE_NAME_LENGTH];             // our NODE name
+extern uint8_t domain_name[NSP_DOMAIN_LENGTH];              // our MDS domain name
+extern uint8_t ep_type[NSP_ENDPOINT_TYPE_LENGTH];           // our NODE type
+extern uint8_t lifetime_ptr[NSP_LIFE_TIME_LENGTH];          // MDS lifetime
+
+// ************************* MDS CONFIGURATION *********************************
+
+
+// callback template for PUT/GET
+typedef uint8_t (*sn_grs_dyn_res_callback_t)(sn_coap_hdr_s *, sn_nsdl_addr_s *, sn_proto_info_s *);
+
+// external methods
+extern "C" void *nsdl_alloc(uint16_t size);
+extern "C" void nsdl_free(void* ptr_to_free);
+extern void nsdl_create_static_resource(sn_nsdl_resource_info_s *resource_structure, uint16_t pt_len, uint8_t *pt, uint16_t rpp_len, uint8_t *rpp_ptr, uint8_t *rsc, uint16_t rsc_len);
+extern void nsdl_create_dynamic_resource(sn_nsdl_resource_info_s *resource_structure, uint16_t pt_len, uint8_t *pt, uint16_t rpp_len, uint8_t *rpp_ptr, uint8_t is_observable, sn_grs_dyn_res_callback_t callback_ptr, int access_right);
+extern sn_nsdl_ep_parameters_s* nsdl_init_register_endpoint(sn_nsdl_ep_parameters_s *endpoint_structure, uint8_t *domain, uint8_t* name, uint8_t* ypename_ptr, uint8_t *lifetime_ptr);
+extern void nsdl_clean_register_endpoint(sn_nsdl_ep_parameters_s **endpoint_structure);
+extern void nsdl_init();
+extern void nsdl_event_loop();
+extern void nsdl_run();
+extern void nsdl_reg_update();
+void NSP_registration();
+
+extern "C" void configure_endpoint();
+
+#endif // NSDL_SUPPORT_H