Contiki 2.5
contiki-conf.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2006, Technical University of Munich
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the Institute nor the names of its contributors
14  * may be used to endorse or promote products derived from this software
15  * without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * This file is part of the Contiki operating system.
30  *
31  * @(#)$$
32  */
33 
34 /**
35  * \file
36  * Configuration for sample STK 501 Contiki kernel
37  *
38  * \author
39  * Simon Barner <barner@in.tum.de
40  */
41 
42 #ifndef __CONTIKI_CONF_H__
43 #define __CONTIKI_CONF_H__
44 
45 /*
46  * MCU and clock rate. Various MCUs can be inserted in the ZIF socket.
47  */
48 #ifndef MCU
49 #define MCU atmega128
50 #endif
51 #ifndef F_CPU
52 #define F_CPU 16000000UL
53 #endif
54 #define PLATFORM PLATFORM_AVR
55 
56 /* Cock ticks per second */
57 #define CLOCK_CONF_SECOND 125
58 #define RIME_CONF_BROADCAST_ANNOUNCEMENT_MAX_TIME CLOCK_CONF_SECOND * 524UL /*Default uses 600*/
59 
60 /* COM port to be used for SLIP connection */
61 #define SLIP_PORT RS232_PORT_0
62 
63 /* Pre-allocated memory for loadable modules heap space (in bytes)*/
64 #define MMEM_CONF_SIZE 256
65 
66 /* Use the following address for code received via the codeprop
67  * facility
68  */
69 #define EEPROMFS_ADDR_CODEPROP 0x8000
70 
71 #define CCIF
72 #define CLIF
73 
74 #define UIP_CONF_PINGADDRCONF 0
75 #define UIP_CONF_MAX_CONNECTIONS 4
76 #define UIP_CONF_MAX_LISTENPORTS 4
77 #define UIP_CONF_BUFFER_SIZE 100
78 #define UIP_CONF_TCP_SPLIT 1
79 #define UIP_CONF_FWCACHE_SIZE 2
80 #define UIP_CONF_BROADCAST 1
81 #define UIP_UDP 1
82 
83 #define HAVE_STDINT_H
84 #include "avrdef.h"
85 
86 typedef unsigned short clock_time_t;
87 typedef unsigned short uip_stats_t;
88 typedef unsigned long off_t;
89 
90 void clock_delay(unsigned int us2);
91 void clock_wait(int ms10);
92 void clock_set_seconds(unsigned long s);
93 unsigned long clock_seconds(void);
94 
95 #endif /* __CONTIKI_CONF_H__ */