LED Demo for Tech Con 2014

Dependencies:   EthernetInterface PololuLedStripx mbed-rtos mbed nanoservice_client_1_12_X

Fork of LPC1768_LWM2M_Client by MBED_DEMOS

Committer:
michaeljkoster
Date:
Mon Nov 17 17:37:16 2014 +0000
Revision:
15:2f2b3eaa51a6
Parent:
0:9101343a70cd
LED Strip Demo

Who changed what in which revision?

UserRevisionLine numberNew contents of line
michaeljkoster 0:9101343a70cd 1 // Support functions for the NSDL library
michaeljkoster 0:9101343a70cd 2
michaeljkoster 0:9101343a70cd 3 #ifndef NSDL_SUPPORT_H
michaeljkoster 0:9101343a70cd 4 #define NSDL_SUPPORT_H
michaeljkoster 0:9101343a70cd 5
michaeljkoster 0:9101343a70cd 6 #include "mbed.h"
michaeljkoster 0:9101343a70cd 7 #include <stdint.h>
michaeljkoster 0:9101343a70cd 8 #include "sn_nsdl.h"
michaeljkoster 0:9101343a70cd 9 #include "sn_coap_header.h"
michaeljkoster 0:9101343a70cd 10 #include "sn_coap_protocol.h"
michaeljkoster 0:9101343a70cd 11 #include "sn_nsdl_lib.h"
michaeljkoster 0:9101343a70cd 12
michaeljkoster 0:9101343a70cd 13 typedef uint8_t (*sn_grs_dyn_res_callback_t)(sn_coap_hdr_s *, sn_nsdl_addr_s *, sn_proto_info_s *);
michaeljkoster 0:9101343a70cd 14
michaeljkoster 0:9101343a70cd 15 extern "C" void *nsdl_alloc(uint16_t size);
michaeljkoster 0:9101343a70cd 16 extern "C" void nsdl_free(void* ptr_to_free);
michaeljkoster 0:9101343a70cd 17 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);
michaeljkoster 0:9101343a70cd 18 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);
michaeljkoster 0:9101343a70cd 19 sn_nsdl_ep_parameters_s* nsdl_init_register_endpoint(sn_nsdl_ep_parameters_s *endpoint_structure, uint8_t* name, uint8_t* ypename_ptr, uint8_t *lifetime_ptr);
michaeljkoster 0:9101343a70cd 20 void nsdl_clean_register_endpoint(sn_nsdl_ep_parameters_s **endpoint_structure);
michaeljkoster 0:9101343a70cd 21 void nsdl_init();
michaeljkoster 0:9101343a70cd 22 void nsdl_event_loop();
michaeljkoster 0:9101343a70cd 23
michaeljkoster 0:9101343a70cd 24 #endif // NSDL_SUPPORT_H