Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: ESP8266Interface HTTPClient Motordriver WebSocketClient mbed
Fork of ESP8266_WebSockets_HelloWorld by
nsdl_support.h@0:6a891da014a3, 2014-12-24 (annotated)
- Committer:
- michaeljkoster
- Date:
- Wed Dec 24 19:02:13 2014 +0000
- Revision:
- 0:6a891da014a3
Initial commit
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
michaeljkoster | 0:6a891da014a3 | 1 | // Support functions for the NSDL library |
michaeljkoster | 0:6a891da014a3 | 2 | |
michaeljkoster | 0:6a891da014a3 | 3 | #ifndef NSDL_SUPPORT_H |
michaeljkoster | 0:6a891da014a3 | 4 | #define NSDL_SUPPORT_H |
michaeljkoster | 0:6a891da014a3 | 5 | |
michaeljkoster | 0:6a891da014a3 | 6 | #include "mbed.h" |
michaeljkoster | 0:6a891da014a3 | 7 | #include <stdint.h> |
michaeljkoster | 0:6a891da014a3 | 8 | #include "sn_nsdl.h" |
michaeljkoster | 0:6a891da014a3 | 9 | #include "sn_coap_header.h" |
michaeljkoster | 0:6a891da014a3 | 10 | #include "sn_coap_protocol.h" |
michaeljkoster | 0:6a891da014a3 | 11 | #include "sn_nsdl_lib.h" |
michaeljkoster | 0:6a891da014a3 | 12 | |
michaeljkoster | 0:6a891da014a3 | 13 | typedef uint8_t (*sn_grs_dyn_res_callback_t)(sn_coap_hdr_s *, sn_nsdl_addr_s *, sn_proto_info_s *); |
michaeljkoster | 0:6a891da014a3 | 14 | |
michaeljkoster | 0:6a891da014a3 | 15 | extern "C" void *nsdl_alloc(uint16_t size); |
michaeljkoster | 0:6a891da014a3 | 16 | extern "C" void nsdl_free(void* ptr_to_free); |
michaeljkoster | 0:6a891da014a3 | 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:6a891da014a3 | 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:6a891da014a3 | 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:6a891da014a3 | 20 | void nsdl_clean_register_endpoint(sn_nsdl_ep_parameters_s **endpoint_structure); |
michaeljkoster | 0:6a891da014a3 | 21 | void nsdl_init(); |
michaeljkoster | 0:6a891da014a3 | 22 | void nsdl_event_loop(); |
michaeljkoster | 0:6a891da014a3 | 23 | |
michaeljkoster | 0:6a891da014a3 | 24 | #endif // NSDL_SUPPORT_H |