1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

examples: renamed rpl_udp header

This commit is contained in:
Oleg Hahm 2014-08-04 17:52:39 +02:00
parent b22c2f4ab5
commit ea1d1d68b6
5 changed files with 7 additions and 7 deletions

View File

@ -27,7 +27,7 @@
#include "ieee802154_frame.h" #include "ieee802154_frame.h"
#include "rpl_structs.h" #include "rpl_structs.h"
#include "demo.h" #include "rpl_udp.h"
#define ENABLE_DEBUG (0) #define ENABLE_DEBUG (0)
#include "debug.h" #include "debug.h"

View File

@ -27,7 +27,7 @@
#include "board_uart0.h" #include "board_uart0.h"
#include "destiny.h" #include "destiny.h"
#include "demo.h" #include "rpl_udp.h"
const shell_command_t shell_commands[] = { const shell_command_t shell_commands[] = {
{"init", "Initialize network", rpl_udp_init}, {"init", "Initialize network", rpl_udp_init},

View File

@ -27,7 +27,7 @@
#include "destiny.h" #include "destiny.h"
#include "rpl.h" #include "rpl.h"
#include "rpl_dodag.h" #include "rpl_dodag.h"
#include "demo.h" #include "rpl_udp.h"
#include "transceiver.h" #include "transceiver.h"
#define ENABLE_DEBUG (0) #define ENABLE_DEBUG (0)

View File

@ -1,5 +1,5 @@
#ifndef DEMO_H #ifndef RPL_UDP_H
#define DEMO_H #define RPL_UDP_H
#define APP_VERSION "1.1" #define APP_VERSION "1.1"
@ -49,4 +49,4 @@ void *rpl_udp_monitor(void *arg);
extern radio_address_t id; extern radio_address_t id;
extern ipv6_addr_t std_addr; extern ipv6_addr_t std_addr;
extern char addr_str[IPV6_MAX_ADDR_STR_LEN]; extern char addr_str[IPV6_MAX_ADDR_STR_LEN];
#endif /* DEMO_H */ #endif /* RPL_UDP_H */

View File

@ -30,7 +30,7 @@
#include "net_help.h" #include "net_help.h"
#include "demo.h" #include "rpl_udp.h"
#define UDP_BUFFER_SIZE (128) #define UDP_BUFFER_SIZE (128)
#define SERVER_PORT (0xFF01) #define SERVER_PORT (0xFF01)