2013-11-24 16:57:08 +01:00
|
|
|
#ifndef CONTIKI_CONF_H_
|
|
|
|
#define CONTIKI_CONF_H_
|
2012-03-05 16:47:01 +01:00
|
|
|
|
|
|
|
#include "8051def.h"
|
|
|
|
#include "sys/cc.h"
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
/* Include Project Specific conf */
|
|
|
|
#ifdef PROJECT_CONF_H
|
|
|
|
#include "project-conf.h"
|
|
|
|
#endif /* PROJECT_CONF_H */
|
|
|
|
|
2013-04-03 16:59:05 +02:00
|
|
|
/*
|
|
|
|
* Build for SmartRF05EB+CC2530EM by default.
|
|
|
|
* This define needs to have its final value before inclusion of models.h
|
|
|
|
*/
|
|
|
|
#ifndef MODELS_CONF_CC2531_USB_STICK
|
|
|
|
#define MODELS_CONF_CC2531_USB_STICK 0
|
|
|
|
#endif
|
|
|
|
|
2011-12-22 20:12:34 +01:00
|
|
|
#include "models.h"
|
|
|
|
|
2012-04-02 18:05:08 +02:00
|
|
|
/*
|
|
|
|
* Define this as 1 to poll the etimer process from within main instead of from
|
|
|
|
* the clock ISR. This reduces the ISR's stack usage and may prevent crashes.
|
|
|
|
*/
|
|
|
|
#ifndef CLOCK_CONF_STACK_FRIENDLY
|
|
|
|
#define CLOCK_CONF_STACK_FRIENDLY 1
|
|
|
|
#endif
|
|
|
|
|
2012-09-07 12:12:31 +02:00
|
|
|
#ifndef STACK_CONF_DEBUGGING
|
|
|
|
#define STACK_CONF_DEBUGGING 0
|
|
|
|
#endif
|
|
|
|
|
2012-03-05 16:47:01 +01:00
|
|
|
/* Energest Module */
|
|
|
|
#ifndef ENERGEST_CONF_ON
|
|
|
|
#define ENERGEST_CONF_ON 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Verbose Startup? Turning this off saves plenty of bytes of CODE in HOME */
|
2012-04-20 14:56:51 +02:00
|
|
|
#ifndef STARTUP_CONF_VERBOSE
|
2012-03-05 16:47:01 +01:00
|
|
|
#define STARTUP_CONF_VERBOSE 0
|
2012-04-20 14:56:51 +02:00
|
|
|
#endif
|
2012-03-05 16:47:01 +01:00
|
|
|
|
|
|
|
/* More CODE space savings by turning off process names */
|
|
|
|
#define PROCESS_CONF_NO_PROCESS_NAMES 1
|
|
|
|
|
|
|
|
/*
|
|
|
|
* USARTs:
|
|
|
|
* SmartRF RS232 -> USART0 / Alternative 1 (UART)
|
|
|
|
* SmartRF LCD -> USART1 / Alternative 2 (SPI)
|
|
|
|
*/
|
|
|
|
#define UART_ON_USART 0
|
|
|
|
|
|
|
|
#define UART1_CONF_ENABLE 0
|
|
|
|
|
|
|
|
#ifndef UART0_CONF_ENABLE
|
|
|
|
#define UART0_CONF_ENABLE 1
|
|
|
|
#endif
|
|
|
|
#ifndef UART0_CONF_WITH_INPUT
|
|
|
|
#define UART0_CONF_WITH_INPUT 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef UART0_CONF_HIGH_SPEED
|
|
|
|
#define UART0_CONF_HIGH_SPEED 0
|
|
|
|
#endif
|
|
|
|
|
2012-09-10 17:14:00 +02:00
|
|
|
/* USB output buffering enabled by default (relevant to cc2531 builds only) */
|
|
|
|
#ifndef USB_SERIAL_CONF_BUFFERED
|
|
|
|
#define USB_SERIAL_CONF_BUFFERED 1
|
|
|
|
#endif
|
|
|
|
|
2013-03-23 16:01:30 +01:00
|
|
|
#define SLIP_RADIO_CONF_NO_PUTCHAR 1
|
|
|
|
|
2013-03-23 13:03:10 +01:00
|
|
|
#if defined (UIP_FALLBACK_INTERFACE) || defined (CMD_CONF_OUTPUT)
|
|
|
|
#define SLIP_ARCH_CONF_ENABLE 1
|
|
|
|
#endif
|
|
|
|
|
2012-03-05 16:47:01 +01:00
|
|
|
/* Are we a SLIP bridge? */
|
|
|
|
#if SLIP_ARCH_CONF_ENABLE
|
|
|
|
/* Make sure the UART is enabled, with interrupts */
|
|
|
|
#undef UART0_CONF_ENABLE
|
|
|
|
#undef UART0_CONF_WITH_INPUT
|
|
|
|
#define UART0_CONF_ENABLE 1
|
|
|
|
#define UART0_CONF_WITH_INPUT 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Output all captured frames over the UART in hexdump format */
|
|
|
|
#ifndef CC2530_RF_CONF_HEXDUMP
|
|
|
|
#define CC2530_RF_CONF_HEXDUMP 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if CC2530_RF_CONF_HEXDUMP
|
|
|
|
/* We need UART1 output */
|
|
|
|
#undef UART_ZERO_CONF_ENABLE
|
|
|
|
#define UART_ZERO_CONF_ENABLE 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Code Shortcuts */
|
|
|
|
/*
|
|
|
|
* When set, this directive also configures the following bypasses:
|
|
|
|
* - process_post_synch() in tcpip_input() (we call packet_input())
|
|
|
|
* - process_post_synch() in tcpip_uipcall (we call the relevant pthread)
|
|
|
|
* - mac_call_sent_callback() is replaced with sent() in various places
|
|
|
|
*
|
2012-04-01 22:43:22 +02:00
|
|
|
* These are good things to do, they reduce stack usage and prevent crashes
|
2012-03-05 16:47:01 +01:00
|
|
|
*/
|
2012-04-01 22:43:22 +02:00
|
|
|
#define NETSTACK_CONF_SHORTCUTS 1
|
2012-03-05 16:47:01 +01:00
|
|
|
|
2012-04-20 15:06:25 +02:00
|
|
|
/*
|
|
|
|
* By default we read our MAC from the (read-only) Information Page (primary
|
|
|
|
* location). In order to have a user-programmable mac, define this as 0 to
|
|
|
|
* use the secondary location (addresses 0xFFE8 - 0xFFEF on the last flash page)
|
|
|
|
*/
|
|
|
|
#ifndef CC2530_CONF_MAC_FROM_PRIMARY
|
|
|
|
#define CC2530_CONF_MAC_FROM_PRIMARY 1
|
|
|
|
#endif
|
|
|
|
|
2012-08-16 15:53:43 +02:00
|
|
|
/* Interrupt Number 6: Shared between P2 Inputs, I2C and USB
|
|
|
|
* A single ISR handles all of the above. Leave this as is if you are not
|
|
|
|
* interested in any of the above. Define as 1 (e.g. in project-conf.h) if
|
|
|
|
* at least one of those interrupt sources will need handled */
|
|
|
|
#ifndef PORT_2_ISR_ENABLED
|
|
|
|
#define PORT_2_ISR_ENABLED 0
|
|
|
|
#endif
|
|
|
|
|
2012-03-05 16:47:01 +01:00
|
|
|
/*
|
|
|
|
* Sensors
|
|
|
|
* It is harmless to #define XYZ 1
|
|
|
|
* even if the sensor is not present on our device
|
|
|
|
*/
|
|
|
|
#ifndef BUTTON_SENSOR_CONF_ON
|
|
|
|
#define BUTTON_SENSOR_CONF_ON 1 /* Buttons */
|
|
|
|
#endif
|
2012-04-30 12:26:04 +02:00
|
|
|
|
|
|
|
/* B2 on the cc2531 USB stick can be a reset button or a general-purpose one */
|
|
|
|
#ifndef CC2531_CONF_B2_REBOOTS
|
|
|
|
#define CC2531_CONF_B2_REBOOTS 0 /* General Purpose by default */
|
|
|
|
#endif
|
|
|
|
|
2012-03-05 16:47:01 +01:00
|
|
|
/* ADC - Turning this off will disable everything below */
|
|
|
|
#ifndef ADC_SENSOR_CONF_ON
|
|
|
|
#define ADC_SENSOR_CONF_ON 1
|
|
|
|
#endif
|
|
|
|
#define TEMP_SENSOR_CONF_ON 1 /* Temperature */
|
|
|
|
#define VDD_SENSOR_CONF_ON 1 /* Supply Voltage */
|
|
|
|
#define BATTERY_SENSOR_CONF_ON 0 /* Battery */
|
|
|
|
|
|
|
|
/* Low Power Modes - We only support PM0/Idle and PM1 */
|
|
|
|
#ifndef LPM_CONF_MODE
|
|
|
|
#define LPM_CONF_MODE 0 /* 0: no LPM, 1: MCU IDLE, 2: Drop to PM1 */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* DMA Configuration */
|
|
|
|
#ifndef DMA_CONF_ON
|
|
|
|
#define DMA_CONF_ON 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Viztool on by default for IPv6 builds */
|
2014-12-01 21:02:57 +01:00
|
|
|
#if NETSTACK_CONF_WITH_IPV6
|
2012-03-05 16:47:01 +01:00
|
|
|
#ifndef VIZTOOL_CONF_ON
|
|
|
|
#define VIZTOOL_CONF_ON 1
|
|
|
|
#endif /* VIZTOOL_CONF_ON */
|
2014-12-01 21:02:57 +01:00
|
|
|
#endif /* NETSTACK_CONF_WITH_IPV6 */
|
2012-03-05 16:47:01 +01:00
|
|
|
|
|
|
|
/* Network Stack */
|
2013-03-23 16:03:31 +01:00
|
|
|
#ifndef NETSTACK_CONF_NETWORK
|
2014-12-01 21:02:57 +01:00
|
|
|
#if NETSTACK_CONF_WITH_IPV6
|
2012-03-05 16:47:01 +01:00
|
|
|
#define NETSTACK_CONF_NETWORK sicslowpan_driver
|
|
|
|
#else
|
|
|
|
#define NETSTACK_CONF_NETWORK rime_driver
|
2014-12-01 21:02:57 +01:00
|
|
|
#endif /* NETSTACK_CONF_WITH_IPV6 */
|
2013-03-23 16:03:31 +01:00
|
|
|
#endif /* NETSTACK_CONF_NETWORK */
|
2012-03-05 16:47:01 +01:00
|
|
|
|
|
|
|
#ifndef NETSTACK_CONF_MAC
|
|
|
|
#define NETSTACK_CONF_MAC csma_driver
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef NETSTACK_CONF_RDC
|
|
|
|
#define NETSTACK_CONF_RDC nullrdc_driver
|
|
|
|
#define NULLRDC_802154_AUTOACK 1
|
|
|
|
#define NULLRDC_802154_AUTOACK_HW 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef NETSTACK_CONF_RDC_CHANNEL_CHECK_RATE
|
|
|
|
#define NETSTACK_CONF_RDC_CHANNEL_CHECK_RATE 8
|
|
|
|
#endif
|
|
|
|
|
2013-03-23 16:03:31 +01:00
|
|
|
#ifndef NETSTACK_CONF_FRAMER
|
2012-03-05 16:47:01 +01:00
|
|
|
#define NETSTACK_CONF_FRAMER framer_802154
|
2013-03-23 16:03:31 +01:00
|
|
|
#endif
|
|
|
|
|
2012-03-05 16:47:01 +01:00
|
|
|
#define NETSTACK_CONF_RADIO cc2530_rf_driver
|
|
|
|
|
|
|
|
/* RF Config */
|
2014-12-08 23:30:07 +01:00
|
|
|
#ifndef IEEE802154_CONF_PANID
|
|
|
|
#define IEEE802154_CONF_PANID 0xABCD
|
|
|
|
#endif
|
2012-03-05 16:47:01 +01:00
|
|
|
|
|
|
|
#ifndef CC2530_RF_CONF_CHANNEL
|
|
|
|
#define CC2530_RF_CONF_CHANNEL 25
|
|
|
|
#endif /* CC2530_RF_CONF_CHANNEL */
|
|
|
|
|
|
|
|
#ifndef CC2530_RF_CONF_AUTOACK
|
|
|
|
#define CC2530_RF_CONF_AUTOACK 1
|
|
|
|
#endif /* CC2530_CONF_AUTOACK */
|
|
|
|
|
2014-12-01 21:02:57 +01:00
|
|
|
#if NETSTACK_CONF_WITH_IPV6
|
2012-03-05 16:47:01 +01:00
|
|
|
/* Addresses, Sizes and Interfaces */
|
|
|
|
/* 8-byte addresses here, 2 otherwise */
|
2013-12-12 23:58:52 +01:00
|
|
|
#define LINKADDR_CONF_SIZE 8
|
2012-03-05 16:47:01 +01:00
|
|
|
#define UIP_CONF_LL_802154 1
|
|
|
|
#define UIP_CONF_LLH_LEN 0
|
|
|
|
#define UIP_CONF_NETIF_MAX_ADDRESSES 3
|
|
|
|
|
|
|
|
/* TCP, UDP, ICMP */
|
|
|
|
#define UIP_CONF_TCP 0
|
|
|
|
#define UIP_CONF_UDP 1
|
|
|
|
#define UIP_CONF_UDP_CHECKSUMS 1
|
|
|
|
|
|
|
|
/* ND and Routing */
|
2012-04-30 15:02:35 +02:00
|
|
|
#ifndef UIP_CONF_ROUTER
|
|
|
|
#define UIP_CONF_ROUTER 1
|
|
|
|
#endif
|
|
|
|
|
2012-03-05 16:47:01 +01:00
|
|
|
#define UIP_CONF_ND6_SEND_RA 0
|
|
|
|
#define UIP_CONF_IP_FORWARD 0
|
|
|
|
#define RPL_CONF_STATS 0
|
|
|
|
#define RPL_CONF_MAX_DAG_ENTRIES 1
|
|
|
|
#ifndef RPL_CONF_OF
|
2013-07-01 18:00:21 +02:00
|
|
|
#define RPL_CONF_OF rpl_mrhof
|
2012-03-05 16:47:01 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define UIP_CONF_ND6_REACHABLE_TIME 600000
|
|
|
|
#define UIP_CONF_ND6_RETRANS_TIMER 10000
|
|
|
|
|
2013-07-29 18:49:21 +02:00
|
|
|
#ifndef NBR_TABLE_CONF_MAX_NEIGHBORS
|
|
|
|
#define NBR_TABLE_CONF_MAX_NEIGHBORS 4 /* Handle n Neighbors */
|
2012-03-05 16:47:01 +01:00
|
|
|
#endif
|
2013-03-18 00:00:15 +01:00
|
|
|
#ifndef UIP_CONF_MAX_ROUTES
|
|
|
|
#define UIP_CONF_MAX_ROUTES 4 /* Handle n Routes */
|
2012-03-05 16:47:01 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* uIP */
|
2013-03-23 16:03:31 +01:00
|
|
|
#ifndef UIP_CONF_BUFFER_SIZE
|
2012-03-05 16:47:01 +01:00
|
|
|
#define UIP_CONF_BUFFER_SIZE 240
|
2013-03-23 16:03:31 +01:00
|
|
|
#endif
|
2012-03-05 16:47:01 +01:00
|
|
|
#define UIP_CONF_IPV6_QUEUE_PKT 0
|
|
|
|
#define UIP_CONF_IPV6_CHECKS 1
|
|
|
|
#define UIP_CONF_IPV6_REASSEMBLY 0
|
|
|
|
|
|
|
|
/* 6lowpan */
|
|
|
|
#define SICSLOWPAN_CONF_COMPRESSION SICSLOWPAN_COMPRESSION_HC06
|
|
|
|
#ifndef SICSLOWPAN_CONF_FRAG
|
|
|
|
#define SICSLOWPAN_CONF_FRAG 0 /* About 2KB of CODE if 1 */
|
|
|
|
#endif
|
|
|
|
#define SICSLOWPAN_CONF_MAXAGE 8
|
|
|
|
|
|
|
|
/* Define our IPv6 prefixes/contexts here */
|
|
|
|
#define SICSLOWPAN_CONF_MAX_ADDR_CONTEXTS 1
|
|
|
|
#define SICSLOWPAN_CONF_ADDR_CONTEXT_0 { \
|
|
|
|
addr_contexts[0].prefix[0] = 0xaa; \
|
|
|
|
addr_contexts[0].prefix[1] = 0xaa; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define MAC_CONF_CHANNEL_CHECK_RATE 8
|
2013-03-23 16:03:31 +01:00
|
|
|
|
|
|
|
#ifndef QUEUEBUF_CONF_NUM
|
2012-03-05 16:47:01 +01:00
|
|
|
#define QUEUEBUF_CONF_NUM 6
|
2013-03-23 16:03:31 +01:00
|
|
|
#endif
|
2012-03-05 16:47:01 +01:00
|
|
|
|
2014-12-01 21:02:57 +01:00
|
|
|
#else /* NETSTACK_CONF_WITH_IPV6 */
|
2012-03-05 16:47:01 +01:00
|
|
|
/* Network setup for non-IPv6 (rime). */
|
|
|
|
#define UIP_CONF_IP_FORWARD 1
|
|
|
|
#define UIP_CONF_BUFFER_SIZE 108
|
|
|
|
#define RIME_CONF_NO_POLITE_ANNOUCEMENTS 0
|
|
|
|
#define QUEUEBUF_CONF_NUM 8
|
2014-12-01 21:02:57 +01:00
|
|
|
#endif /* NETSTACK_CONF_WITH_IPV6 */
|
2012-03-05 16:47:01 +01:00
|
|
|
|
2013-03-20 19:34:16 +01:00
|
|
|
/* Prevent SDCC compile error when UIP_CONF_ROUTER == 0 */
|
|
|
|
#if !UIP_CONF_ROUTER
|
|
|
|
#define UIP_CONF_DS6_AADDR_NBU 1
|
|
|
|
#endif
|
|
|
|
|
2013-11-24 16:57:08 +01:00
|
|
|
#endif /* CONTIKI_CONF_H_ */
|