CoAP: auto-initialize module
This commit is contained in:
parent
cc37c1a558
commit
7a96a8f8a9
@ -92,9 +92,6 @@ PROCESS_THREAD(er_example_client, ev, data)
|
|||||||
|
|
||||||
coap_endpoint_parse(SERVER_EP, strlen(SERVER_EP), &server_ep);
|
coap_endpoint_parse(SERVER_EP, strlen(SERVER_EP), &server_ep);
|
||||||
|
|
||||||
/* receives all CoAP messages */
|
|
||||||
coap_engine_init();
|
|
||||||
|
|
||||||
etimer_set(&et, TOGGLE_INTERVAL * CLOCK_SECOND);
|
etimer_set(&et, TOGGLE_INTERVAL * CLOCK_SECOND);
|
||||||
|
|
||||||
#if PLATFORM_HAS_BUTTON
|
#if PLATFORM_HAS_BUTTON
|
||||||
|
@ -119,9 +119,6 @@ PROCESS_THREAD(er_example_server, ev, data)
|
|||||||
PRINTF("IP+UDP header: %u\n", UIP_IPUDPH_LEN);
|
PRINTF("IP+UDP header: %u\n", UIP_IPUDPH_LEN);
|
||||||
PRINTF("CoAP max chunk: %u\n", COAP_MAX_CHUNK_SIZE);
|
PRINTF("CoAP max chunk: %u\n", COAP_MAX_CHUNK_SIZE);
|
||||||
|
|
||||||
/* Initialize the REST engine. */
|
|
||||||
coap_engine_init();
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Bind the resources to their Uri-Path.
|
* Bind the resources to their Uri-Path.
|
||||||
* WARNING: Activating twice only means alternate path, not two instances!
|
* WARNING: Activating twice only means alternate path, not two instances!
|
||||||
|
@ -94,9 +94,6 @@ PROCESS_THREAD(plugtest_server, ev, data)
|
|||||||
PRINTF("IP+UDP header: %u\n", UIP_IPUDPH_LEN);
|
PRINTF("IP+UDP header: %u\n", UIP_IPUDPH_LEN);
|
||||||
PRINTF("REST max chunk: %u\n", REST_MAX_CHUNK_SIZE);
|
PRINTF("REST max chunk: %u\n", REST_MAX_CHUNK_SIZE);
|
||||||
|
|
||||||
/* Initialize the REST engine. */
|
|
||||||
coap_engine_init();
|
|
||||||
|
|
||||||
/* Activate the application-specific resources. */
|
/* Activate the application-specific resources. */
|
||||||
coap_activate_resource(&res_plugtest_test, "test");
|
coap_activate_resource(&res_plugtest_test, "test");
|
||||||
coap_activate_resource(&res_plugtest_validate, "validate");
|
coap_activate_resource(&res_plugtest_validate, "validate");
|
||||||
|
@ -267,9 +267,6 @@ PROCESS_THREAD(router_process, ev, data)
|
|||||||
|
|
||||||
PROCESS_PAUSE();
|
PROCESS_PAUSE();
|
||||||
|
|
||||||
/* receives all CoAP messages */
|
|
||||||
coap_engine_init();
|
|
||||||
|
|
||||||
setup_network();
|
setup_network();
|
||||||
|
|
||||||
while(1) {
|
while(1) {
|
||||||
|
@ -133,9 +133,6 @@ PROCESS_THREAD(coap_server_process, ev, data)
|
|||||||
|
|
||||||
printf("CC26XX CoAP Server\n");
|
printf("CC26XX CoAP Server\n");
|
||||||
|
|
||||||
/* Initialize the REST engine. */
|
|
||||||
coap_engine_init();
|
|
||||||
|
|
||||||
coap_activate_resource(&res_batmon_temp, "sen/batmon/temp");
|
coap_activate_resource(&res_batmon_temp, "sen/batmon/temp");
|
||||||
coap_activate_resource(&res_batmon_volt, "sen/batmon/voltage");
|
coap_activate_resource(&res_batmon_volt, "sen/batmon/voltage");
|
||||||
|
|
||||||
|
@ -344,8 +344,6 @@ PROCESS_THREAD(very_sleepy_demo_process, ev, data)
|
|||||||
|
|
||||||
event_new_config = process_alloc_event();
|
event_new_config = process_alloc_event();
|
||||||
|
|
||||||
coap_engine_init();
|
|
||||||
|
|
||||||
readings_resource.flags += IS_OBSERVABLE;
|
readings_resource.flags += IS_OBSERVABLE;
|
||||||
coap_activate_resource(&readings_resource, "sen/readings");
|
coap_activate_resource(&readings_resource, "sen/readings");
|
||||||
coap_activate_resource(&very_sleepy_conf, "very_sleepy_config");
|
coap_activate_resource(&very_sleepy_conf, "very_sleepy_config");
|
||||||
|
@ -135,7 +135,6 @@ PROCESS_THREAD(start_app, ev, data)
|
|||||||
NETSTACK_MAC.on();
|
NETSTACK_MAC.on();
|
||||||
printf("Starting RPL node\n");
|
printf("Starting RPL node\n");
|
||||||
|
|
||||||
coap_engine_init();
|
|
||||||
coap_activate_resource(&resource_led_toggle, "Dongle/LED-toggle");
|
coap_activate_resource(&resource_led_toggle, "Dongle/LED-toggle");
|
||||||
|
|
||||||
PROCESS_END();
|
PROCESS_END();
|
||||||
|
@ -355,7 +355,6 @@ PROCESS_THREAD(start_app, ev, data)
|
|||||||
NETSTACK_MAC.on();
|
NETSTACK_MAC.on();
|
||||||
printf("Starting RPL node\n");
|
printf("Starting RPL node\n");
|
||||||
|
|
||||||
coap_engine_init();
|
|
||||||
coap_activate_resource(&resource_light_sensor_value, "DR1175/LightSensor/Value");
|
coap_activate_resource(&resource_light_sensor_value, "DR1175/LightSensor/Value");
|
||||||
coap_activate_resource(&resource_light_sensor_unit, "DR1175/LightSensor/Unit");
|
coap_activate_resource(&resource_light_sensor_unit, "DR1175/LightSensor/Unit");
|
||||||
coap_activate_resource(&resource_temperature_unit, "DR1175/Temperature/Unit");
|
coap_activate_resource(&resource_temperature_unit, "DR1175/Temperature/Unit");
|
||||||
|
@ -356,7 +356,6 @@ PROCESS_THREAD(start_app, ev, data)
|
|||||||
NETSTACK_MAC.on();
|
NETSTACK_MAC.on();
|
||||||
printf("Starting RPL node\n");
|
printf("Starting RPL node\n");
|
||||||
|
|
||||||
coap_engine_init();
|
|
||||||
coap_activate_resource(&resource_switch_sw1, "DR1199/Switch/SW1");
|
coap_activate_resource(&resource_switch_sw1, "DR1199/Switch/SW1");
|
||||||
coap_activate_resource(&resource_switch_sw2, "DR1199/Switch/SW2");
|
coap_activate_resource(&resource_switch_sw2, "DR1199/Switch/SW2");
|
||||||
coap_activate_resource(&resource_switch_sw3, "DR1199/Switch/SW3");
|
coap_activate_resource(&resource_switch_sw3, "DR1199/Switch/SW3");
|
||||||
|
@ -110,7 +110,6 @@ PROCESS_THREAD(start_app, ev, data)
|
|||||||
NETSTACK_MAC.on();
|
NETSTACK_MAC.on();
|
||||||
printf("Starting RPL node\n");
|
printf("Starting RPL node\n");
|
||||||
|
|
||||||
coap_engine_init();
|
|
||||||
coap_activate_resource(&resource_set_tx_power, "Set-TX-Power");
|
coap_activate_resource(&resource_set_tx_power, "Set-TX-Power");
|
||||||
coap_activate_resource(&resource_get_tx_power, "Get-TX-Power");
|
coap_activate_resource(&resource_get_tx_power, "Get-TX-Power");
|
||||||
|
|
||||||
|
@ -151,7 +151,6 @@ PROCESS_THREAD(start_app, ev, data)
|
|||||||
NETSTACK_MAC.on();
|
NETSTACK_MAC.on();
|
||||||
printf("Starting RPL node\n");
|
printf("Starting RPL node\n");
|
||||||
|
|
||||||
coap_engine_init();
|
|
||||||
coap_activate_resource(&resource_coap_rx_uart1, "UART1-RX");
|
coap_activate_resource(&resource_coap_rx_uart1, "UART1-RX");
|
||||||
coap_activate_resource(&resource_coap_tx_uart1, "UART1-TX");
|
coap_activate_resource(&resource_coap_tx_uart1, "UART1-TX");
|
||||||
|
|
||||||
|
@ -148,9 +148,6 @@ PROCESS_THREAD(er_example_observe_client, ev, data)
|
|||||||
static coap_endpoint_t server_endpoint;
|
static coap_endpoint_t server_endpoint;
|
||||||
coap_endpoint_parse(SERVER_IPV6_EP, strlen(SERVER_IPV6_EP), &server_endpoint);
|
coap_endpoint_parse(SERVER_IPV6_EP, strlen(SERVER_IPV6_EP), &server_endpoint);
|
||||||
|
|
||||||
/* receives all CoAP messages */
|
|
||||||
coap_engine_init();
|
|
||||||
|
|
||||||
#if PLATFORM_HAS_BUTTON
|
#if PLATFORM_HAS_BUTTON
|
||||||
SENSORS_ACTIVATE(button_1);
|
SENSORS_ACTIVATE(button_1);
|
||||||
SENSORS_ACTIVATE(button_2);
|
SENSORS_ACTIVATE(button_2);
|
||||||
|
@ -103,8 +103,6 @@ PROCESS_THREAD(er_example_server, ev, data)
|
|||||||
|
|
||||||
print_local_addresses();
|
print_local_addresses();
|
||||||
|
|
||||||
/* Initialize the REST engine. */
|
|
||||||
coap_engine_init();
|
|
||||||
coap_activate_resource(&res_led3, "lights/led3");
|
coap_activate_resource(&res_led3, "lights/led3");
|
||||||
|
|
||||||
SENSORS_ACTIVATE(button_1);
|
SENSORS_ACTIVATE(button_1);
|
||||||
|
@ -47,6 +47,7 @@
|
|||||||
#include "sys/stack-check.h"
|
#include "sys/stack-check.h"
|
||||||
#include "dev/watchdog.h"
|
#include "dev/watchdog.h"
|
||||||
|
|
||||||
|
#include "net/app-layer/coap/coap-engine.h"
|
||||||
#include "services/rpl-border-router/rpl-border-router.h"
|
#include "services/rpl-border-router/rpl-border-router.h"
|
||||||
#include "services/orchestra/orchestra.h"
|
#include "services/orchestra/orchestra.h"
|
||||||
#include "services/shell/serial-shell.h"
|
#include "services/shell/serial-shell.h"
|
||||||
@ -126,6 +127,11 @@ main(void)
|
|||||||
LOG_DBG("With Shell\n");
|
LOG_DBG("With Shell\n");
|
||||||
#endif /* BUILD_WITH_SHELL */
|
#endif /* BUILD_WITH_SHELL */
|
||||||
|
|
||||||
|
#if BUILD_WITH_COAP
|
||||||
|
coap_engine_init();
|
||||||
|
LOG_DBG("With CoAP\n");
|
||||||
|
#endif /* BUILD_WITH_SHELL */
|
||||||
|
|
||||||
autostart_start(autostart_processes);
|
autostart_start(autostart_processes);
|
||||||
|
|
||||||
watchdog_start();
|
watchdog_start();
|
||||||
|
1
os/net/app-layer/coap/module-macros.h
Normal file
1
os/net/app-layer/coap/module-macros.h
Normal file
@ -0,0 +1 @@
|
|||||||
|
#define BUILD_WITH_COAP 1
|
@ -543,6 +543,9 @@ lwm2m_engine_init(void)
|
|||||||
|
|
||||||
#endif /* LWM2M_ENGINE_CLIENT_ENDPOINT_NAME */
|
#endif /* LWM2M_ENGINE_CLIENT_ENDPOINT_NAME */
|
||||||
|
|
||||||
|
/* Initialize CoAP engine. Contiki-NG already does that from the main,
|
||||||
|
* but for standalone use of lwm2m, this is required here. coap_engine_init()
|
||||||
|
* checks for double-initialization and can be called twice safely. */
|
||||||
coap_engine_init();
|
coap_engine_init();
|
||||||
|
|
||||||
/* Register the CoAP handler for lightweight object handling */
|
/* Register the CoAP handler for lightweight object handling */
|
||||||
|
Loading…
Reference in New Issue
Block a user