Niclas Finne | 3 Jul 2006 13:29
Picon

contiki-2.x/core/dev serial.c,1.1,1.2

Update of /cvsroot/contiki/contiki-2.x/core/dev
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv32366/core/dev

Modified Files:
	serial.c 
Log Message:
changed to terminate the event data with a zero character instead of line feed character

Index: serial.c
===================================================================
RCS file: /cvsroot/contiki/contiki-2.x/core/dev/serial.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** serial.c	17 Jun 2006 22:41:17 -0000	1.1
--- serial.c	3 Jul 2006 11:29:16 -0000	1.2
***************
*** 45,50 ****

  static char buffer[BUFSIZE], appbuffer[BUFSIZE];
! static unsigned char bufwptr;
! static char buffer_full = 0;

  PROCESS(serial_process, "Serial driver");
--- 45,50 ----

  static char buffer[BUFSIZE], appbuffer[BUFSIZE];
! static volatile unsigned char bufwptr;
! static volatile char buffer_full = 0;

(Continue reading)

Niclas Finne | 6 Jul 2006 16:55
Picon

contiki-2.x/apps/codeprop codeprop-tmp.c, 1.1, 1.2

Update of /cvsroot/contiki/contiki-2.x/apps/codeprop
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv24912/apps/codeprop

Modified Files:
	codeprop-tmp.c 
Log Message:
fixed compiler warnings

Index: codeprop-tmp.c
===================================================================
RCS file: /cvsroot/contiki/contiki-2.x/apps/codeprop/codeprop-tmp.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** codeprop-tmp.c	18 Jun 2006 07:44:36 -0000	1.1
--- codeprop-tmp.c	6 Jul 2006 14:55:21 -0000	1.2
***************
*** 75,78 ****
--- 75,79 ----
  #include "codeprop-tmp.h"
  #include "loader/elfloader-tmp.h"
+ #include <string.h>

  static const char *err_msgs[] =
***************
*** 161,166 ****
  PROCESS_THREAD(codeprop_process, ev, data)
  {
-   static int n;
- 
(Continue reading)

Niclas Finne | 7 Jul 2006 08:36
Picon

contiki-2.x/platform/esb/dev beep.c, 1.3, 1.4 beep.h, 1.3, 1.4

Update of /cvsroot/contiki/contiki-2.x/platform/esb/dev
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv16416/platform/esb/dev

Modified Files:
	beep.c beep.h 
Log Message:
removed unneeded constants (BEEP_ON/BEEP_OFF) and simplified the code for beep_on()/beep_off()

Index: beep.h
===================================================================
RCS file: /cvsroot/contiki/contiki-2.x/platform/esb/dev/beep.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** beep.h	18 Jun 2006 08:07:31 -0000	1.3
--- beep.h	7 Jul 2006 06:36:38 -0000	1.4
***************
*** 51,57 ****
  #define __BEEP_H__

- #define BEEP_ON  1
- #define BEEP_OFF 0
- 
  #define BEEP_ALARM1 1
  #define BEEP_ALARM2 2
--- 51,54 ----

Index: beep.c
===================================================================
RCS file: /cvsroot/contiki/contiki-2.x/platform/esb/dev/beep.c,v
(Continue reading)

Niclas Finne | 7 Jul 2006 08:38
Picon

contiki-2.x/platform/native/dev beep.h,1.1,1.2

Update of /cvsroot/contiki/contiki-2.x/platform/native/dev
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv17125/platform/native/dev

Modified Files:
	beep.h 
Log Message:
removed unused constants (BEEP_ON/BEEP_OFF)

Index: beep.h
===================================================================
RCS file: /cvsroot/contiki/contiki-2.x/platform/native/dev/beep.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** beep.h	17 Jun 2006 22:41:31 -0000	1.1
--- beep.h	7 Jul 2006 06:38:53 -0000	1.2
***************
*** 51,57 ****
  #define __BEEP_H__

- #define BEEP_ON  1
- #define BEEP_OFF 0
- 
  #define BEEP_ALARM1 1
  #define BEEP_ALARM2 2
--- 51,54 ----

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
(Continue reading)

Niclas Finne | 7 Jul 2006 08:40
Picon

contiki-2.x/platform/netsim/dev beep.h,1.1,1.2

Update of /cvsroot/contiki/contiki-2.x/platform/netsim/dev
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv17499/platform/netsim/dev

Modified Files:
	beep.h 
Log Message:
removed unused constants (BEEP_ON/BEEP_OFF)

Index: beep.h
===================================================================
RCS file: /cvsroot/contiki/contiki-2.x/platform/netsim/dev/beep.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** beep.h	17 Jun 2006 22:41:35 -0000	1.1
--- beep.h	7 Jul 2006 06:40:05 -0000	1.2
***************
*** 51,57 ****
  #define __BEEP_H__

- #define BEEP_ON  1
- #define BEEP_OFF 0
- 
  #define BEEP_ALARM1 1
  #define BEEP_ALARM2 2
--- 51,54 ----

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
(Continue reading)

Niclas Finne | 7 Jul 2006 08:45
Picon

contiki-2.x/core/net tcpip.c,1.1,1.2

Update of /cvsroot/contiki/contiki-2.x/core/net
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv19637/core/net

Modified Files:
	tcpip.c 
Log Message:
changed to use constant instead of numeric value

Index: tcpip.c
===================================================================
RCS file: /cvsroot/contiki/contiki-2.x/core/net/tcpip.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** tcpip.c	17 Jun 2006 22:41:19 -0000	1.1
--- tcpip.c	7 Jul 2006 06:45:45 -0000	1.2
***************
*** 83,87 ****
    if(uip_len > 0) {
      if(forwarding) {
!       if(uip_fw_forward() == 0) {
  	uip_input();
  	if(uip_len > 0) {
--- 83,87 ----
    if(uip_len > 0) {
      if(forwarding) {
!       if(uip_fw_forward() == UIP_FW_LOCAL) {
  	uip_input();
  	if(uip_len > 0) {

(Continue reading)


Gmane