From ea1d1d68b67be0f045634f15bcf80c8a26d12b51 Mon Sep 17 00:00:00 2001 From: Oleg Hahm Date: Mon, 4 Aug 2014 17:52:39 +0200 Subject: [PATCH] examples: renamed rpl_udp header --- examples/rpl_udp/helper.c | 2 +- examples/rpl_udp/main.c | 2 +- examples/rpl_udp/rpl.c | 2 +- examples/rpl_udp/{demo.h => rpl_udp.h} | 6 +++--- examples/rpl_udp/udp.c | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) rename examples/rpl_udp/{demo.h => rpl_udp.h} (94%) diff --git a/examples/rpl_udp/helper.c b/examples/rpl_udp/helper.c index 3d46dd873a..26e0a245ed 100644 --- a/examples/rpl_udp/helper.c +++ b/examples/rpl_udp/helper.c @@ -27,7 +27,7 @@ #include "ieee802154_frame.h" #include "rpl_structs.h" -#include "demo.h" +#include "rpl_udp.h" #define ENABLE_DEBUG (0) #include "debug.h" diff --git a/examples/rpl_udp/main.c b/examples/rpl_udp/main.c index 92de96240e..72a2e48065 100644 --- a/examples/rpl_udp/main.c +++ b/examples/rpl_udp/main.c @@ -27,7 +27,7 @@ #include "board_uart0.h" #include "destiny.h" -#include "demo.h" +#include "rpl_udp.h" const shell_command_t shell_commands[] = { {"init", "Initialize network", rpl_udp_init}, diff --git a/examples/rpl_udp/rpl.c b/examples/rpl_udp/rpl.c index d8fe168a9b..fc8e160889 100644 --- a/examples/rpl_udp/rpl.c +++ b/examples/rpl_udp/rpl.c @@ -27,7 +27,7 @@ #include "destiny.h" #include "rpl.h" #include "rpl_dodag.h" -#include "demo.h" +#include "rpl_udp.h" #include "transceiver.h" #define ENABLE_DEBUG (0) diff --git a/examples/rpl_udp/demo.h b/examples/rpl_udp/rpl_udp.h similarity index 94% rename from examples/rpl_udp/demo.h rename to examples/rpl_udp/rpl_udp.h index 90eb39a379..f09748d2c1 100644 --- a/examples/rpl_udp/demo.h +++ b/examples/rpl_udp/rpl_udp.h @@ -1,5 +1,5 @@ -#ifndef DEMO_H -#define DEMO_H +#ifndef RPL_UDP_H +#define RPL_UDP_H #define APP_VERSION "1.1" @@ -49,4 +49,4 @@ void *rpl_udp_monitor(void *arg); extern radio_address_t id; extern ipv6_addr_t std_addr; extern char addr_str[IPV6_MAX_ADDR_STR_LEN]; -#endif /* DEMO_H */ +#endif /* RPL_UDP_H */ diff --git a/examples/rpl_udp/udp.c b/examples/rpl_udp/udp.c index a1ecc3ac81..d6f26e316a 100644 --- a/examples/rpl_udp/udp.c +++ b/examples/rpl_udp/udp.c @@ -30,7 +30,7 @@ #include "net_help.h" -#include "demo.h" +#include "rpl_udp.h" #define UDP_BUFFER_SIZE (128) #define SERVER_PORT (0xFF01)