2008-10-14 09:40:30 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2006, Technical University of Munich
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. Neither the name of the Institute nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This file is part of the Contiki operating system.
|
|
|
|
*
|
|
|
|
* @(#)$$
|
|
|
|
*/
|
2011-02-07 19:06:53 +00:00
|
|
|
|
2008-10-14 09:40:30 +00:00
|
|
|
/**
|
|
|
|
* \file
|
2010-02-28 21:29:19 +00:00
|
|
|
* Configuration for Atmel Raven
|
2008-10-14 09:40:30 +00:00
|
|
|
*
|
|
|
|
* \author
|
2010-02-28 21:29:19 +00:00
|
|
|
* Simon Barner <barner@in.tum.de>
|
|
|
|
* David Kopf <dak664@embarqmail.com>
|
2008-10-14 09:40:30 +00:00
|
|
|
*/
|
2011-02-07 19:06:53 +00:00
|
|
|
|
2008-10-14 09:40:30 +00:00
|
|
|
#ifndef __CONTIKI_CONF_H__
|
|
|
|
#define __CONTIKI_CONF_H__
|
|
|
|
|
2010-08-03 20:01:21 +00:00
|
|
|
/* MCU and clock rate */
|
2010-12-13 23:31:13 +00:00
|
|
|
#define PLATFORM PLATFORM_AVR
|
2010-02-26 21:15:28 +00:00
|
|
|
#define RAVEN_REVISION RAVEN_D
|
2010-12-13 23:31:13 +00:00
|
|
|
#ifndef F_CPU
|
|
|
|
#define F_CPU 8000000UL
|
|
|
|
#endif
|
2010-12-14 22:39:38 +00:00
|
|
|
#include <stdint.h>
|
2010-08-03 20:01:21 +00:00
|
|
|
|
2010-12-14 22:39:38 +00:00
|
|
|
typedef int32_t s32_t;
|
|
|
|
typedef unsigned char u8_t;
|
|
|
|
typedef unsigned short u16_t;
|
|
|
|
typedef unsigned long u32_t;
|
|
|
|
typedef unsigned short clock_time_t;
|
|
|
|
typedef unsigned short uip_stats_t;
|
|
|
|
typedef unsigned long off_t;
|
2008-10-14 09:40:30 +00:00
|
|
|
|
2010-12-14 22:39:38 +00:00
|
|
|
void clock_delay(unsigned int us2);
|
|
|
|
void clock_wait(int ms10);
|
|
|
|
void clock_set_seconds(unsigned long s);
|
|
|
|
unsigned long clock_seconds(void);
|
2010-08-03 20:01:21 +00:00
|
|
|
|
2010-12-14 22:39:38 +00:00
|
|
|
/* Maximum timer interval for 16 bit clock_time_t */
|
2010-08-03 20:01:21 +00:00
|
|
|
#define INFINITE_TIME 0xffff
|
|
|
|
|
2010-12-14 22:39:38 +00:00
|
|
|
/* Clock ticks per second */
|
|
|
|
#define CLOCK_CONF_SECOND 125
|
|
|
|
|
|
|
|
/* Maximum tick interval is 0xffff/125 = 524 seconds */
|
|
|
|
#define RIME_CONF_BROADCAST_ANNOUNCEMENT_MAX_TIME CLOCK_CONF_SECOND * 524UL /* Default uses 600UL */
|
|
|
|
#define COLLECT_CONF_BROADCAST_ANNOUNCEMENT_MAX_TIME CLOCK_CONF_SECOND * 524UL /* Default uses 600UL */
|
|
|
|
|
2011-02-07 19:06:53 +00:00
|
|
|
/* The 1284p can use TIMER2 with the external 32768Hz crystal to keep time. Else TIMER0 is used. */
|
|
|
|
/* The sleep timer in raven-lcd.c also uses the crystal and adds a TIMER2 interrupt routine if not already define by clock.c */
|
|
|
|
#define AVR_CONF_USE32KCRYSTAL 0
|
|
|
|
|
2010-12-13 23:31:13 +00:00
|
|
|
/* COM port to be used for SLIP connection. Not tested on Raven */
|
2008-10-14 09:40:30 +00:00
|
|
|
#define SLIP_PORT RS232_PORT_0
|
|
|
|
|
|
|
|
/* Pre-allocated memory for loadable modules heap space (in bytes)*/
|
2010-12-13 23:31:13 +00:00
|
|
|
/* Default is 4096. Currently used only when elfloader is present. Not tested on Raven */
|
|
|
|
//#define MMEM_CONF_SIZE 256
|
2010-12-14 22:39:38 +00:00
|
|
|
|
2010-12-13 23:31:13 +00:00
|
|
|
/* Starting address for code received via the codeprop facility. Not tested on Raven */
|
|
|
|
//#define EEPROMFS_ADDR_CODEPROP 0x8000
|
2008-10-14 09:40:30 +00:00
|
|
|
|
2010-12-13 23:31:13 +00:00
|
|
|
/* Network setup. The new NETSTACK interface requires RF230BB (as does ip4) */
|
|
|
|
#if RF230BB
|
2010-12-14 22:39:38 +00:00
|
|
|
#undef PACKETBUF_CONF_HDR_SIZE //Use the packetbuf default for header size
|
2010-12-13 23:31:13 +00:00
|
|
|
#else
|
|
|
|
#define PACKETBUF_CONF_HDR_SIZE 0 //RF230 combined driver/mac handles headers internally
|
|
|
|
#endif /*RF230BB */
|
2010-02-28 21:39:40 +00:00
|
|
|
|
2010-11-12 17:15:00 +00:00
|
|
|
#if UIP_CONF_IPV6
|
2010-12-13 23:31:13 +00:00
|
|
|
#define RIMEADDR_CONF_SIZE 8
|
|
|
|
#define UIP_CONF_ICMP6 1
|
|
|
|
#define UIP_CONF_UDP 1
|
|
|
|
#define UIP_CONF_TCP 1
|
|
|
|
#define UIP_CONF_IPV6_RPL 0
|
|
|
|
#define NETSTACK_CONF_NETWORK sicslowpan_driver
|
|
|
|
#define SICSLOWPAN_CONF_COMPRESSION SICSLOWPAN_COMPRESSION_HC06
|
2010-11-12 17:15:00 +00:00
|
|
|
#else
|
2010-12-13 23:31:13 +00:00
|
|
|
/* ip4 should build but is largely untested */
|
|
|
|
#define RIMEADDR_CONF_SIZE 2
|
2010-11-12 17:15:00 +00:00
|
|
|
#define NETSTACK_CONF_NETWORK rime_driver
|
2010-12-13 23:31:13 +00:00
|
|
|
#endif /* UIP_CONF_IPV6 */
|
2010-02-08 22:09:25 +00:00
|
|
|
|
2010-12-13 23:31:13 +00:00
|
|
|
/* See uip-ds6.h */
|
|
|
|
#define UIP_CONF_DS6_NBR_NBU 20
|
|
|
|
#define UIP_CONF_DS6_DEFRT_NBU 2
|
|
|
|
#define UIP_CONF_DS6_PREFIX_NBU 3
|
|
|
|
#define UIP_CONF_DS6_ROUTE_NBU 20
|
|
|
|
#define UIP_CONF_DS6_ADDR_NBU 3
|
|
|
|
#define UIP_CONF_DS6_MADDR_NBU 0
|
|
|
|
#define UIP_CONF_DS6_AADDR_NBU 0
|
|
|
|
|
|
|
|
#define UIP_CONF_LL_802154 1
|
|
|
|
#define UIP_CONF_LLH_LEN 0
|
|
|
|
|
|
|
|
/* 10 bytes per stateful address context - see sicslowpan.c */
|
2010-12-14 22:39:38 +00:00
|
|
|
/* Default is 1 context with prefix aaaa::/64 */
|
2010-12-13 23:31:13 +00:00
|
|
|
/* These must agree with all the other nodes or there will be a failure to communicate! */
|
2010-12-14 22:39:38 +00:00
|
|
|
#define SICSLOWPAN_CONF_MAX_ADDR_CONTEXTS 1
|
2010-12-13 23:31:13 +00:00
|
|
|
#define SICSLOWPAN_CONF_ADDR_CONTEXT_0 {addr_contexts[0].prefix[0]=0xaa;addr_contexts[0].prefix[1]=0xaa;}
|
|
|
|
#define SICSLOWPAN_CONF_ADDR_CONTEXT_1 {addr_contexts[1].prefix[0]=0xbb;addr_contexts[1].prefix[1]=0xbb;}
|
|
|
|
#define SICSLOWPAN_CONF_ADDR_CONTEXT_2 {addr_contexts[2].prefix[0]=0x20;addr_contexts[2].prefix[1]=0x01;addr_contexts[2].prefix[2]=0x49;addr_contexts[2].prefix[3]=0x78,addr_contexts[2].prefix[4]=0x1d;addr_contexts[2].prefix[5]=0xb1;}
|
|
|
|
|
|
|
|
/* 211 bytes per queue buffer */
|
2010-12-18 20:46:14 +00:00
|
|
|
#define QUEUEBUF_CONF_NUM 8
|
2010-12-13 23:31:13 +00:00
|
|
|
|
|
|
|
/* 54 bytes per queue ref buffer */
|
2010-12-14 22:39:38 +00:00
|
|
|
#define QUEUEBUF_CONF_REF_NUM 2
|
|
|
|
|
|
|
|
/* Take the default TCP maximum segment size for efficiency and simpler wireshark captures */
|
|
|
|
/* Use this to prevent 6LowPAN fragmentation (whether or not fragmentation is enabled) */
|
|
|
|
//#define UIP_CONF_TCP_MSS 48
|
|
|
|
|
|
|
|
/* 30 bytes per TCP connection */
|
|
|
|
/* 6LoWPAN does not do well with concurrent TCP streams, as new browser GETs collide with packets coming */
|
|
|
|
/* from previous GETs, causing decreased throughput, retransmissions, and timeouts. Increase to study this. */
|
|
|
|
#define UIP_CONF_MAX_CONNECTIONS 1
|
2010-12-13 23:31:13 +00:00
|
|
|
|
2010-12-14 22:39:38 +00:00
|
|
|
/* 2 bytes per TCP listening port */
|
|
|
|
#define UIP_CONF_MAX_LISTENPORTS 1
|
|
|
|
|
|
|
|
/* 25 bytes per UDP connection */
|
|
|
|
#define UIP_CONF_UDP_CONNS 10
|
2010-12-13 23:31:13 +00:00
|
|
|
|
|
|
|
#define UIP_CONF_IP_FORWARD 0
|
|
|
|
#define UIP_CONF_FWCACHE_SIZE 0
|
|
|
|
|
|
|
|
#define UIP_CONF_IPV6_CHECKS 1
|
|
|
|
#define UIP_CONF_IPV6_QUEUE_PKT 1
|
|
|
|
#define UIP_CONF_IPV6_REASSEMBLY 0
|
2010-02-28 21:29:19 +00:00
|
|
|
|
2010-12-13 23:31:13 +00:00
|
|
|
#define UIP_CONF_UDP_CHECKSUMS 1
|
|
|
|
#define UIP_CONF_TCP_SPLIT 1
|
|
|
|
#define UIP_CONF_DHCP_LIGHT 1
|
2010-02-28 21:29:19 +00:00
|
|
|
|
|
|
|
|
2010-12-13 23:31:13 +00:00
|
|
|
#if 1 /* No radio cycling */
|
2010-11-12 17:15:00 +00:00
|
|
|
|
2010-02-28 21:29:19 +00:00
|
|
|
#define NETSTACK_CONF_MAC nullmac_driver
|
|
|
|
#define NETSTACK_CONF_RDC sicslowmac_driver
|
2010-03-02 16:25:47 +00:00
|
|
|
#define NETSTACK_CONF_FRAMER framer_802154
|
2010-02-28 21:29:19 +00:00
|
|
|
#define NETSTACK_CONF_RADIO rf230_driver
|
2010-12-03 20:42:01 +00:00
|
|
|
#define CHANNEL_802_15_4 26
|
2010-12-14 22:39:38 +00:00
|
|
|
/* AUTOACK receive mode gives better rssi measurements, even if ACK is never requested */
|
2010-03-02 16:25:47 +00:00
|
|
|
#define RF230_CONF_AUTOACK 1
|
2011-02-07 19:06:53 +00:00
|
|
|
/* Request 802.15.4 ACK on all packets sent (else autoretry). This is primarily for testing. */
|
2010-12-18 20:46:14 +00:00
|
|
|
#define SICSLOWPAN_CONF_ACK_ALL 0
|
2010-12-14 22:39:38 +00:00
|
|
|
/* Number of auto retry attempts 0-15 (0 implies don't use extended TX_ARET_ON mode with CCA) */
|
2010-12-18 20:46:14 +00:00
|
|
|
#define RF230_CONF_AUTORETRIES 2
|
2010-02-28 21:29:19 +00:00
|
|
|
#define SICSLOWPAN_CONF_FRAG 1
|
2011-02-07 19:06:53 +00:00
|
|
|
/* Most browsers reissue GETs after 3 seconds which stops fragment reassembly so a longer MAXAGE does no good */
|
2010-02-28 21:29:19 +00:00
|
|
|
#define SICSLOWPAN_CONF_MAXAGE 3
|
2011-02-07 19:06:53 +00:00
|
|
|
/* How long to wait before terminating an idle TCP connection. Smaller to allow faster sleep. Default is 120 seconds */
|
|
|
|
#define UIP_CONF_WAIT_TIMEOUT 5
|
2010-02-28 21:29:19 +00:00
|
|
|
|
2011-02-07 19:06:53 +00:00
|
|
|
#elif 1 /* Contiki-mac radio cycling */
|
2010-12-18 20:46:14 +00:00
|
|
|
//#define NETSTACK_CONF_MAC nullmac_driver
|
|
|
|
#define NETSTACK_CONF_MAC csma_driver
|
2010-02-28 21:29:19 +00:00
|
|
|
#define NETSTACK_CONF_RDC contikimac_driver
|
2010-03-02 16:25:47 +00:00
|
|
|
#define NETSTACK_CONF_FRAMER framer_802154
|
2010-02-28 21:29:19 +00:00
|
|
|
#define NETSTACK_CONF_RADIO rf230_driver
|
2010-12-03 20:42:01 +00:00
|
|
|
#define CHANNEL_802_15_4 26
|
2010-03-02 16:25:47 +00:00
|
|
|
#define RF230_CONF_AUTOACK 0
|
|
|
|
#define RF230_CONF_AUTORETRIES 0
|
2010-12-13 23:31:13 +00:00
|
|
|
#define SICSLOWPAN_CONF_FRAG 1
|
|
|
|
#define SICSLOWPAN_CONF_MAXAGE 3
|
2010-12-18 20:46:14 +00:00
|
|
|
#define NETSTACK_CONF_RDC_CHANNEL_CHECK_RATE 8
|
2010-02-28 21:29:19 +00:00
|
|
|
|
2010-12-18 20:46:14 +00:00
|
|
|
#elif 1 /* cx-mac radio cycling */
|
2011-02-07 19:06:53 +00:00
|
|
|
/* RF230 does clear-channel assessment in extended mode (autoretries>0) */
|
|
|
|
#define RF230_CONF_AUTORETRIES 1
|
|
|
|
#if RF230_CONF_AUTORETRIES
|
2010-02-28 21:29:19 +00:00
|
|
|
#define NETSTACK_CONF_MAC nullmac_driver
|
2011-02-07 19:06:53 +00:00
|
|
|
#else
|
|
|
|
#define NETSTACK_CONF_MAC csma_driver
|
|
|
|
#endif
|
2010-02-28 21:29:19 +00:00
|
|
|
#define NETSTACK_CONF_RDC cxmac_driver
|
2010-03-02 16:25:47 +00:00
|
|
|
#define NETSTACK_CONF_FRAMER framer_802154
|
2010-02-28 21:29:19 +00:00
|
|
|
#define NETSTACK_CONF_RADIO rf230_driver
|
2010-12-03 20:42:01 +00:00
|
|
|
#define CHANNEL_802_15_4 26
|
2010-12-18 20:46:14 +00:00
|
|
|
#define RF230_CONF_AUTOACK 1
|
2010-02-28 21:29:19 +00:00
|
|
|
#define SICSLOWPAN_CONF_FRAG 1
|
|
|
|
#define SICSLOWPAN_CONF_MAXAGE 3
|
2011-02-07 19:06:53 +00:00
|
|
|
#define CXMAC_CONF_ANNOUNCEMENTS 0
|
2010-12-18 20:46:14 +00:00
|
|
|
#define NETSTACK_CONF_RDC_CHANNEL_CHECK_RATE 8
|
2010-12-13 23:31:13 +00:00
|
|
|
|
2010-02-28 21:29:19 +00:00
|
|
|
//Below gives 10% duty cycle, undef for default 5%
|
|
|
|
//#define CXMAC_CONF_ON_TIME (RTIMER_ARCH_SECOND / 80)
|
|
|
|
//Below gives 50% duty cycle
|
2010-03-02 16:25:47 +00:00
|
|
|
//#define CXMAC_CONF_ON_TIME (RTIMER_ARCH_SECOND / 16)
|
2008-10-14 09:40:30 +00:00
|
|
|
|
2010-03-02 16:25:47 +00:00
|
|
|
#else
|
|
|
|
#error Network configuration not specified!
|
|
|
|
#endif /* Network setup */
|
2010-02-28 21:29:19 +00:00
|
|
|
|
|
|
|
/* Logging adds 200 bytes to program size */
|
|
|
|
#define LOG_CONF_ENABLED 1
|
2008-10-14 09:40:30 +00:00
|
|
|
|
2010-12-01 16:23:55 +00:00
|
|
|
/* ************************************************************************** */
|
|
|
|
//#pragma mark RPL Settings
|
|
|
|
/* ************************************************************************** */
|
|
|
|
#if UIP_CONF_IPV6_RPL
|
|
|
|
|
|
|
|
/* Define MAX_*X_POWER to reduce tx power and ignore weak rx packets for testing a miniature multihop network.
|
2010-11-24 18:46:57 +00:00
|
|
|
* Leave undefined for full power and sensitivity.
|
|
|
|
* tx=0 (3dbm, default) to 15 (-17.2dbm)
|
|
|
|
* RF230_CONF_AUTOACK sets the extended mode using the energy-detect register with rx=0 (-91dBm) to 84 (-7dBm)
|
|
|
|
* else the rssi register is used having range 0 (91dBm) to 28 (-10dBm)
|
2010-12-01 16:23:55 +00:00
|
|
|
* For simplicity RF230_MIN_RX_POWER is based on the energy-detect value and divided by 3 when autoack is not set.
|
2010-11-24 18:46:57 +00:00
|
|
|
* On the RF230 a reduced rx power threshold will not prevent autoack if enabled and requested.
|
2010-12-01 16:23:55 +00:00
|
|
|
* These numbers applied to both Raven and Jackdaw give a maximum communication distance of about 15 cm
|
|
|
|
* and a 10 meter range to a full-sensitivity RF230 sniffer.
|
2010-12-13 23:31:13 +00:00
|
|
|
#define RF230_MAX_TX_POWER 15
|
|
|
|
#define RF230_MIN_RX_POWER 30
|
2010-11-24 18:46:57 +00:00
|
|
|
*/
|
2010-11-03 16:51:55 +00:00
|
|
|
|
|
|
|
#define UIP_CONF_ROUTER 1
|
2010-12-13 23:31:13 +00:00
|
|
|
#define UIP_CONF_ND6_SEND_RA 0
|
2010-11-03 16:51:55 +00:00
|
|
|
#define UIP_CONF_ND6_REACHABLE_TIME 600000
|
|
|
|
#define UIP_CONF_ND6_RETRANS_TIMER 10000
|
2010-12-13 23:31:13 +00:00
|
|
|
|
2010-11-03 16:51:55 +00:00
|
|
|
#undef UIP_CONF_UDP_CONNS
|
|
|
|
#define UIP_CONF_UDP_CONNS 12
|
|
|
|
#undef UIP_CONF_FWCACHE_SIZE
|
|
|
|
#define UIP_CONF_FWCACHE_SIZE 30
|
|
|
|
#define UIP_CONF_BROADCAST 1
|
|
|
|
#define UIP_ARCH_IPCHKSUM 1
|
|
|
|
#define UIP_CONF_PINGADDRCONF 0
|
|
|
|
#define UIP_CONF_LOGGING 0
|
|
|
|
|
|
|
|
#endif /* RPL */
|
2008-10-14 09:40:30 +00:00
|
|
|
|
2010-12-14 22:39:38 +00:00
|
|
|
#define CCIF
|
|
|
|
#define CLIF
|
2008-10-14 09:40:30 +00:00
|
|
|
|
|
|
|
#endif /* __CONTIKI_CONF_H__ */
|