Ivan Delamer | 1 Feb 2012 17:57
Picon

SF.net Git: contiki branch master updated. e7cd04b558990690fc7c3d2589b05129b1d4cf84

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "contiki".

The branch, master has been updated
       via  e7cd04b558990690fc7c3d2589b05129b1d4cf84 (commit)
      from  02d3fd47589792e567d6eb2c855858be394372a2 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit e7cd04b558990690fc7c3d2589b05129b1d4cf84
Author: Ivan Delamer <delamer@...>
Date:   Wed Feb 1 09:55:41 2012 -0700

    Bug fix: do not overwrite NS or RA messages otherwise generated in the
    same uip_ds6_periodic() call.

diff --git a/core/net/uip-ds6.c b/core/net/uip-ds6.c
index 22ebea1..1f54ca0 100644
--- a/core/net/uip-ds6.c
+++ b/core/net/uip-ds6.c
 <at>  <at>  -158,7 +158,8  <at>  <at>  uip_ds6_periodic(void)
 #if UIP_ND6_DEF_MAXDADNS > 0
       } else if((locaddr->state == ADDR_TENTATIVE)
                 && (locaddr->dadnscount <= uip_ds6_if.maxdadns)
-                && (timer_expired(&locaddr->dadtimer))) {
+                && (timer_expired(&locaddr->dadtimer))
(Continue reading)

Ivan Delamer | 1 Feb 2012 21:07
Picon

SF.net Git: contiki branch master updated. 27daa940303f99138d8f235f98eaf3fbb9d0742f

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "contiki".

The branch, master has been updated
       via  27daa940303f99138d8f235f98eaf3fbb9d0742f (commit)
      from  e7cd04b558990690fc7c3d2589b05129b1d4cf84 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 27daa940303f99138d8f235f98eaf3fbb9d0742f
Author: Ivan Delamer <delamer@...>
Date:   Wed Feb 1 13:06:38 2012 -0700

    Compress UDP header when UIP_CONF_UDP is disabled but we are routing
    others' UDP packets.

diff --git a/core/net/sicslowpan.c b/core/net/sicslowpan.c
index 1afd462..24d57dd 100644
--- a/core/net/sicslowpan.c
+++ b/core/net/sicslowpan.c
 <at>  <at>  -578,7 +578,7  <at>  <at>  compress_hdr_hc06(rimeaddr_t *rime_destaddr)
   /* Note that the payload length is always compressed */

   /* Next header. We compress it if UDP */
-#if UIP_CONF_UDP
+#if UIP_CONF_UDP || UIP_CONF_ROUTER
(Continue reading)

Ivan Delamer | 1 Feb 2012 22:18
Picon

SF.net Git: contiki branch master updated. 987906be97215dc4b94967748540f818840f24e9

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "contiki".

The branch, master has been updated
       via  987906be97215dc4b94967748540f818840f24e9 (commit)
       via  57e686179c40e2638536810e6899ab6d07f2579f (commit)
      from  27daa940303f99138d8f235f98eaf3fbb9d0742f (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 987906be97215dc4b94967748540f818840f24e9
Author: David Kopf <dak664@...>
Date:   Wed Feb 1 14:16:39 2012 -0700

    rf230bb updates: involves setting the 801.15.4 pending bit,
    0x800000 cpu clock, and a jtag reset bugfix

diff --git a/cpu/avr/radio/rf230bb/at86rf230_registermap.h b/cpu/avr/radio/rf230bb/at86rf230_registermap.h
index fbadf28..4a0fd87 100644
--- a/cpu/avr/radio/rf230bb/at86rf230_registermap.h
+++ b/cpu/avr/radio/rf230bb/at86rf230_registermap.h
 <at>  <at>  -345,7 +345,9  <at>  <at> 
 #define RG_CSMA_BE                      0x2f
 /** Access parameters for sub-register MIN_BE in register  <at> ref RG_CSMA_SEED_1 */
 #define SR_MIN_BE                    0x2e, 0xc0, 6
-#define SR_reserved_2e_2             0x2e, 0x30, 4
(Continue reading)

Niclas Finne | 2 Feb 2012 17:40
Picon

SF.net Git: contiki branch master updated. b56198dc3cc43195d070ee4bb1e1644378e7b975

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "contiki".

The branch, master has been updated
       via  b56198dc3cc43195d070ee4bb1e1644378e7b975 (commit)
      from  987906be97215dc4b94967748540f818840f24e9 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit b56198dc3cc43195d070ee4bb1e1644378e7b975
Author: Niclas Finne <nfi@...>
Date:   Thu Feb 2 17:38:33 2012 +0100

    Added option to read sensor data from TCP connection

diff --git a/tools/collect-view/src/se/sics/contiki/collect/CollectServer.java b/tools/collect-view/src/se/sics/contiki/collect/CollectServer.java
index cc7785f..cb75ab9 100644
--- a/tools/collect-view/src/se/sics/contiki/collect/CollectServer.java
+++ b/tools/collect-view/src/se/sics/contiki/collect/CollectServer.java
 <at>  <at>  -1474,6 +1474,7  <at>  <at>  public class CollectServer implements SerialConnectionListener {
     boolean resetSensorLog = false;
     boolean useSensorLog = true;
     boolean useSerialOutput = true;
+    String host = null;
     String command = null;
     String logFileToLoad = null;
(Continue reading)

Oliver Schmidt | 10 Feb 2012 17:20
Picon

SF.net Git: contiki branch master updated. f5debc9d42baad21d3becca733f20361f222c6a0

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "contiki".

The branch, master has been updated
       via  f5debc9d42baad21d3becca733f20361f222c6a0 (commit)
      from  b56198dc3cc43195d070ee4bb1e1644378e7b975 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit f5debc9d42baad21d3becca733f20361f222c6a0
Author: Oliver Schmidt <oliverschmidt@...>
Date:   Fri Feb 10 17:19:40 2012 +0100

    Adjusted relative path to BREADBOX64 to work when 'contiki' and 'contikiprojects' are siblings.

diff --git a/tools/6502/Makefile b/tools/6502/Makefile
index 06ddf8f..e08f2f2 100644
--- a/tools/6502/Makefile
+++ b/tools/6502/Makefile
 <at>  <at>  -67,7 +67,7  <at>  <at>  $1-makes:
 	$(MAKE) -C ../../examples/irc        TARGET=$1
 	$(MAKE) -C ../../examples/email      TARGET=$1
 	$(MAKE) -C ../../examples/ftp        TARGET=$1
-	$(MAKE) -C ../../../../contikiprojects/vandenbrande.com/twitter/platform/$1
+	$(MAKE) -C ../../../contikiprojects/vandenbrande.com/twitter/platform/$1
 endef
(Continue reading)

Oliver Schmidt | 10 Feb 2012 18:56
Picon

SF.net Git: contiki branch master updated. cb12d7b74598088bae74d3f8dbc96b2c3d15cdb6

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "contiki".

The branch, master has been updated
       via  cb12d7b74598088bae74d3f8dbc96b2c3d15cdb6 (commit)
      from  f5debc9d42baad21d3becca733f20361f222c6a0 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit cb12d7b74598088bae74d3f8dbc96b2c3d15cdb6
Author: Oliver Schmidt <oliverschmidt@...>
Date:   Fri Feb 10 18:56:40 2012 +0100

    Minor formatting adjustment.

diff --git a/tools/6502/Makefile b/tools/6502/Makefile
index e08f2f2..48a8996 100644
--- a/tools/6502/Makefile
+++ b/tools/6502/Makefile
 <at>  <at>  -150,35 +150,35  <at>  <at>  c64-1-disk: c64-makes

 c64-2-disk: c64-makes
 	$(C1541) -format contiki,00 d64 contiki-2.d64
-	$(C1541) -attach contiki-2.d64 -write dummy.cfg                                                                        contiki.cfg,u
-	$(C1541) -attach contiki-2.d64 -write ../../cpu/6502/dhcp/dhcp-client.c64                                              dhcp,p
-	$(C1541) -attach contiki-2.d64 -write ../../examples/email/email-client.c64                                            email,p
(Continue reading)

dak664 | 11 Feb 2012 21:22
Picon

SF.net Git: contiki branch master updated. 20a5c794dd1c83151a9087903b88550b7f1f7834

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "contiki".

The branch, master has been updated
       via  20a5c794dd1c83151a9087903b88550b7f1f7834 (commit)
       via  0327fe30201889de1558a9d73d85ec4102d3bb5e (commit)
       via  9d6542d49b3c13b2818486b16c9b0375fb3ce6e0 (commit)
       via  38267bfd5a932d044f683ab97bcc671ed9feeaf7 (commit)
      from  cb12d7b74598088bae74d3f8dbc96b2c3d15cdb6 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 20a5c794dd1c83151a9087903b88550b7f1f7834
Author: David Kopf <dak664@...>
Date:   Sat Feb 11 15:19:28 2012 -0500

    Move address initialization to after proce_init. Something in that now wiping the address array.

diff --git a/platform/minimal-net/contiki-main.c b/platform/minimal-net/contiki-main.c
index 9e28979..cf09c27 100644
--- a/platform/minimal-net/contiki-main.c
+++ b/platform/minimal-net/contiki-main.c
 <at>  <at>  -29,7 +29,6  <at>  <at> 
  *
  * This file is part of the Contiki OS
  *
(Continue reading)

Mariano Alvira | 13 Feb 2012 15:58
Picon

SF.net Git: contiki branch master updated. bde97a0356f3fd2de2ca0d76b17cc075fadca91f

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "contiki".

The branch, master has been updated
       via  bde97a0356f3fd2de2ca0d76b17cc075fadca91f (commit)
       via  e13dc1d5eef200d13d8f3ecb4b3edfd779c81f67 (commit)
       via  9f54eeacd70abec6ed2d6dd992eab6866a2da158 (commit)
      from  20a5c794dd1c83151a9087903b88550b7f1f7834 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit bde97a0356f3fd2de2ca0d76b17cc075fadca91f
Author: Mariano Alvira <mar@...>
Date:   Fri Feb 10 11:51:35 2012 -0500

    add emacs mode hint to Makefile.include

diff --git a/Makefile.include b/Makefile.include
index ceccb9c..e8251c9 100644
--- a/Makefile.include
+++ b/Makefile.include
 <at>  <at>  -1,3 +1,5  <at>  <at> 
+# -*- makefile -*-
+
 ifndef CONTIKI
   ${error CONTIKI not defined! You must specify where CONTIKI resides}
(Continue reading)

Mariano Alvira | 13 Feb 2012 16:04
Picon

SF.net Git: contiki branch master updated. 43062b6d74ca8cf093c065322e41fa740d4ad3ea

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "contiki".

The branch, master has been updated
       via  43062b6d74ca8cf093c065322e41fa740d4ad3ea (commit)
       via  ee8f2c669e8813bc467af9578ba744e260ccc909 (commit)
      from  bde97a0356f3fd2de2ca0d76b17cc075fadca91f (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 43062b6d74ca8cf093c065322e41fa740d4ad3ea
Author: Mariano Alvira <mar@...>
Date:   Fri Feb 10 11:01:59 2012 -0500

    mc1322x: change how board.h works to allow default board.h (defaults
    to econotag)

diff --git a/cpu/mc1322x/Makefile.mc1322x b/cpu/mc1322x/Makefile.mc1322x
index 724570a..dd9d481 100644
--- a/cpu/mc1322x/Makefile.mc1322x
+++ b/cpu/mc1322x/Makefile.mc1322x
 <at>  <at>  -74,9 +74,9  <at>  <at>  CFLAGS += -I$(OBJECTDIR) -I$(CONTIKI_CPU)/board -DBOARD=$(TARGET)
 $(OBJECTDIR)/board.h: $(OBJECTDIR) 
 ifneq (,$(findstring Windows,$(OS)))
 	${info Cygwin detected.}
-	ln -f $(CONTIKI_CPU)/board/$(TARGET).h $(OBJECTDIR)/board.h
(Continue reading)

Fredrik Ă–sterlind | 16 Feb 2012 15:52
Picon

SF.net Git: contiki branch master updated. 2c9316c5fa0cc3e034fc9a4b6e3c6e0918f9b1df

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "contiki".

The branch, master has been updated
       via  2c9316c5fa0cc3e034fc9a4b6e3c6e0918f9b1df (commit)
      from  43062b6d74ca8cf093c065322e41fa740d4ad3ea (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 2c9316c5fa0cc3e034fc9a4b6e3c6e0918f9b1df
Author: Fredrik Osterlind <fros@...>
Date:   Thu Feb 16 15:51:32 2012 +0100

    more informative error messages at simulation error

diff --git a/tools/cooja/apps/mspsim/src/se/sics/cooja/mspmote/MspMote.java b/tools/cooja/apps/mspsim/src/se/sics/cooja/mspmote/MspMote.java
index 73fb459..f71d29f 100644
--- a/tools/cooja/apps/mspsim/src/se/sics/cooja/mspmote/MspMote.java
+++ b/tools/cooja/apps/mspsim/src/se/sics/cooja/mspmote/MspMote.java
 <at>  <at>  -335,7 +335,7  <at>  <at>  public abstract class MspMote extends AbstractEmulatedMote implements Mote, Watc
     if (t < lastExecute) {
       throw new RuntimeException("Bad event ordering: " + lastExecute + " < " + t);
     }
-
+    
     /* Execute MSPSim-based mote */
(Continue reading)


Gmane