From eea6b9051d5df27ffc439e62a5c2173d255fcbee Mon Sep 17 00:00:00 2001 From: George Oikonomou Date: Fri, 4 Jan 2013 12:34:49 +0000 Subject: [PATCH 1/2] Removed a stray leds_toggle --- cpu/cc253x/dev/uart-intr.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/cpu/cc253x/dev/uart-intr.c b/cpu/cc253x/dev/uart-intr.c index 89b7c8fb1..e0ad6f57e 100644 --- a/cpu/cc253x/dev/uart-intr.c +++ b/cpu/cc253x/dev/uart-intr.c @@ -15,7 +15,6 @@ #include "dev/uart0.h" #include "dev/uart1.h" #include "sys/energest.h" -#include "dev/leds.h" #if UART0_ENABLE static int (* uart0_input_handler)(unsigned char c); @@ -42,7 +41,6 @@ void uart0_rx_isr(void) __interrupt(URX0_VECTOR) { ENERGEST_ON(ENERGEST_TYPE_IRQ); - leds_toggle(LEDS_YELLOW); URX0IF = 0; if(uart0_input_handler != NULL) { uart0_input_handler(U0DBUF); From a35580d068df7f8e9c37d4bf19e303970e70305e Mon Sep 17 00:00:00 2001 From: George Oikonomou Date: Wed, 9 Jan 2013 20:46:54 +0000 Subject: [PATCH 2/2] cc2530 udp server example is no longer RPL root by default --- examples/cc2530dk/udp-ipv6/server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/cc2530dk/udp-ipv6/server.c b/examples/cc2530dk/udp-ipv6/server.c index 21cfc62a9..ae8c3d65c 100644 --- a/examples/cc2530dk/udp-ipv6/server.c +++ b/examples/cc2530dk/udp-ipv6/server.c @@ -53,7 +53,7 @@ static uint16_t len; #define SERVER_REPLY 1 /* Should we act as RPL root? */ -#define SERVER_RPL_ROOT 1 +#define SERVER_RPL_ROOT 0 #if SERVER_RPL_ROOT static uip_ipaddr_t ipaddr;