1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/examples/rpl_udp/rpl.c

154 lines
4.1 KiB
C
Raw Normal View History

2014-02-03 22:47:31 +01:00
/*
* Copyright (C) 2013, 2014 INRIA
2014-02-03 22:47:31 +01:00
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
2014-02-03 22:47:31 +01:00
*/
/**
* @ingroup examples
* @{
*
* @file
* @brief UDP RPL example application
*
* @author Oliver Hahm <oliver.hahm@inria.fr>
*
* @}
*/
2014-01-06 10:10:47 +01:00
#include <stdio.h>
#include <string.h>
#include "vtimer.h"
#include "thread.h"
2014-02-13 16:06:25 +01:00
#include "net_if.h"
2014-01-06 10:10:47 +01:00
#include "sixlowpan.h"
#include "udp.h"
2014-01-06 10:10:47 +01:00
#include "rpl.h"
2014-08-06 13:48:18 +02:00
#include "rpl/rpl_dodag.h"
2014-08-04 17:52:39 +02:00
#include "rpl_udp.h"
#include "transceiver.h"
2014-01-06 10:10:47 +01:00
2014-03-03 00:25:38 +01:00
#define ENABLE_DEBUG (0)
#include "debug.h"
#define TRANSCEIVER TRANSCEIVER_DEFAULT
2014-01-06 10:10:47 +01:00
char monitor_stack_buffer[MONITOR_STACK_SIZE];
radio_address_t id;
uint8_t is_root = 0;
2014-02-24 23:39:23 +01:00
void rpl_udp_init(int argc, char **argv)
2014-01-06 10:10:47 +01:00
{
transceiver_command_t tcmd;
msg_t m;
uint8_t chan = RADIO_CHANNEL;
2014-02-24 23:39:23 +01:00
if (argc != 2) {
printf("Usage: %s (r|n)\n", argv[0]);
2014-01-06 10:10:47 +01:00
printf("\tr\tinitialize as root\n");
printf("\tn\tinitialize as node router\n");
2014-01-18 01:16:38 +01:00
return;
2014-01-06 10:10:47 +01:00
}
2014-02-24 23:39:23 +01:00
char command = argv[1][0];
2014-01-06 10:10:47 +01:00
if ((command == 'n') || (command == 'r')) {
printf("INFO: Initialize as %s on address %d\n", ((command == 'n') ? "node" : "root"), id);
2014-01-06 10:10:47 +01:00
if (!id || (id > 255)) {
printf("ERROR: address not a valid 8 bit integer\n");
return;
}
2014-03-03 10:59:19 +01:00
DEBUGF("Setting HW address to %u\n", id);
2014-02-13 16:06:25 +01:00
net_if_set_hardware_address(0, id);
2014-03-03 10:59:19 +01:00
DEBUGF("Initializing RPL for interface 0\n");
uint8_t state = rpl_init(0);
2014-01-06 10:10:47 +01:00
if (state != SIXLOWERROR_SUCCESS) {
printf("Error initializing RPL\n");
}
else {
puts("6LoWPAN and RPL initialized.");
}
if (command == 'r') {
rpl_init_root();
is_root = 1;
}
else {
ipv6_iface_set_routing_provider(rpl_get_next_hop);
}
2014-03-03 10:59:19 +01:00
DEBUGF("Start monitor\n");
kernel_pid_t monitor_pid = thread_create(monitor_stack_buffer,
sizeof(monitor_stack_buffer),
PRIORITY_MAIN - 2,
CREATE_STACKTEST,
rpl_udp_monitor,
NULL,
"monitor");
2014-03-03 10:59:19 +01:00
DEBUGF("Register at transceiver %02X\n", TRANSCEIVER);
2014-01-06 10:10:47 +01:00
transceiver_register(TRANSCEIVER, monitor_pid);
ipv6_register_packet_handler(monitor_pid);
//sixlowpan_lowpan_register(monitor_pid);
}
else {
printf("ERROR: Unknown command '%c'\n", command);
return;
}
/* add global address */
ipv6_addr_t tmp;
/* initialize prefix */
ipv6_addr_init(&tmp, 0xabcd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, id);
/* set host suffix */
ipv6_addr_set_by_eui64(&tmp, 0, &tmp);
2014-02-13 16:06:25 +01:00
ipv6_net_if_add_addr(0, &tmp, NDP_ADDR_STATE_PREFERRED, 0, 0, 0);
ipv6_init_as_router();
2014-01-06 10:10:47 +01:00
/* set channel to 10 */
tcmd.transceivers = TRANSCEIVER;
tcmd.data = &chan;
m.type = SET_CHANNEL;
m.content.ptr = (void *) &tcmd;
msg_send_receive(&m, &m, transceiver_pid);
printf("Channel set to %u\n", RADIO_CHANNEL);
puts("Transport Layer initialized");
2014-01-06 10:10:47 +01:00
/* start transceiver watchdog */
}
2014-02-24 23:39:23 +01:00
void rpl_udp_dodag(int argc, char **argv)
2014-01-06 10:10:47 +01:00
{
2014-02-24 23:39:23 +01:00
(void) argc;
(void) argv;
2014-01-06 10:10:47 +01:00
printf("---------------------------\n");
rpl_dodag_t *mydodag = rpl_get_my_dodag();
if (mydodag == NULL) {
printf("Not part of a dodag\n");
2014-01-18 01:15:29 +01:00
printf("---------------------------\n");
2014-01-06 10:10:47 +01:00
return;
}
printf("Part of Dodag:\n");
2014-02-13 16:06:25 +01:00
printf("%s\n", ipv6_addr_to_str(addr_str, IPV6_MAX_ADDR_STR_LEN,
(&mydodag->dodag_id)));
2014-01-06 10:10:47 +01:00
printf("my rank: %d\n", mydodag->my_rank);
2014-01-06 10:10:47 +01:00
if (!is_root) {
printf("my preferred parent:\n");
2014-02-13 16:06:25 +01:00
printf("%s\n", ipv6_addr_to_str(addr_str, IPV6_MAX_ADDR_STR_LEN,
(&mydodag->my_preferred_parent->addr)));
2014-01-06 10:10:47 +01:00
}
2014-01-18 01:15:29 +01:00
printf("---------------------------\n");
2014-01-06 10:10:47 +01:00
}