2007-09-05 12:59:10 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2007, Swedish Institute of Computer Science
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* Author: Oliver Schmidt <ol.sc@web.de>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-11-24 16:57:08 +01:00
|
|
|
#ifndef S502DEF_H_
|
|
|
|
#define S502DEF_H_
|
2007-09-05 12:59:10 +02:00
|
|
|
|
2007-12-16 18:03:27 +01:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <conio.h>
|
2007-12-23 16:29:19 +01:00
|
|
|
#include <fcntl.h>
|
2009-02-28 12:45:35 +01:00
|
|
|
#include <stdio.h>
|
2007-11-18 00:42:23 +01:00
|
|
|
#include <stdint.h>
|
2009-02-28 12:45:35 +01:00
|
|
|
#include <unistd.h>
|
2007-09-05 12:59:10 +02:00
|
|
|
|
2010-03-27 16:16:57 +01:00
|
|
|
#include "pfs.h"
|
|
|
|
|
2007-09-05 12:59:10 +02:00
|
|
|
/* These names are deprecated, use C99 names. */
|
2007-12-15 01:06:27 +01:00
|
|
|
typedef uint8_t u8_t;
|
|
|
|
typedef uint16_t u16_t;
|
|
|
|
typedef uint32_t u32_t;
|
|
|
|
typedef int32_t s32_t;
|
2007-09-05 12:59:10 +02:00
|
|
|
|
|
|
|
#define CC_CONF_REGISTER_ARGS 1
|
|
|
|
|
2013-03-14 23:17:59 +01:00
|
|
|
#define ARCH_DOESNT_NEED_ALIGNED_STRUCTS 1
|
|
|
|
|
2007-09-05 12:59:10 +02:00
|
|
|
#define CCIF
|
|
|
|
#define CLIF
|
|
|
|
|
2008-02-16 09:56:29 +01:00
|
|
|
#define HAVE_SNPRINTF
|
|
|
|
#define snprintf(buf, len, ...) sprintf(buf, __VA_ARGS__)
|
|
|
|
|
2015-08-04 13:48:08 +02:00
|
|
|
#define CLOCK_CONF_SECOND 4
|
2007-09-05 12:59:10 +02:00
|
|
|
typedef unsigned short clock_time_t;
|
|
|
|
|
2007-12-16 18:03:27 +01:00
|
|
|
typedef unsigned short uip_stats_t;
|
|
|
|
|
2007-09-05 12:59:10 +02:00
|
|
|
#define UIP_ARCH_ADD32 1
|
|
|
|
#define UIP_ARCH_CHKSUM 1
|
|
|
|
|
2014-01-17 22:07:03 +01:00
|
|
|
#define UIP_CONF_LLH_LEN 14
|
2013-03-14 23:17:59 +01:00
|
|
|
#define RESOLV_CONF_SUPPORTS_MDNS 0
|
|
|
|
#define RESOLV_CONF_SUPPORTS_RECORD_EXPIRATION 0
|
2010-04-05 17:17:22 +02:00
|
|
|
|
2010-02-05 00:52:30 +01:00
|
|
|
#define LOADER_CONF_ARCH "lib/unload.h"
|
|
|
|
|
2010-04-11 22:47:16 +02:00
|
|
|
#if MTU_SIZE
|
|
|
|
#define UIP_CONF_BUFFER_SIZE (UIP_LLH_LEN + MTU_SIZE)
|
|
|
|
#else /* MTU_SIZE */
|
|
|
|
#define UIP_CONF_BUFFER_SIZE (UIP_LLH_LEN + 1500)
|
|
|
|
#endif /* MTU_SIZE */
|
|
|
|
|
|
|
|
#if CONNECTIONS
|
|
|
|
#define UIP_CONF_MAX_CONNECTIONS CONNECTIONS
|
|
|
|
#else /* CONNECTIONS */
|
2015-06-21 17:53:19 +02:00
|
|
|
#define UIP_CONF_MAX_CONNECTIONS 2
|
2010-04-11 22:47:16 +02:00
|
|
|
#endif /* CONNECTIONS */
|
|
|
|
|
2008-01-01 20:47:03 +01:00
|
|
|
#if WITH_LOGGING
|
|
|
|
#define LOG_CONF_ENABLED 1
|
2010-01-30 21:48:31 +01:00
|
|
|
#define UIP_CONF_LOGGING 1
|
2008-01-01 20:47:03 +01:00
|
|
|
#else /* WITH_LOGGING */
|
|
|
|
#define LOG_CONF_ENABLED 0
|
2010-01-30 21:48:31 +01:00
|
|
|
#define UIP_CONF_LOGGING 0
|
2008-01-01 20:47:03 +01:00
|
|
|
#endif /* WITH_LOGGING */
|
|
|
|
|
2007-12-23 14:55:38 +01:00
|
|
|
#if WITH_BOOST
|
|
|
|
#define UIP_CONF_TCP_SPLIT 1
|
|
|
|
#else /* WITH_BOOST */
|
|
|
|
#define UIP_CONF_TCP_SPLIT 0
|
|
|
|
#endif /* WITH_BOOST */
|
|
|
|
|
2008-03-29 16:21:51 +01:00
|
|
|
#if WITH_FORWARDING
|
2008-05-14 21:19:28 +02:00
|
|
|
#define UIP_CONF_IP_FORWARD 1
|
2008-03-29 16:22:39 +01:00
|
|
|
#else /* WITH_FORWARDING */
|
2008-05-14 21:19:28 +02:00
|
|
|
#define UIP_CONF_IP_FORWARD 0
|
2008-03-29 16:22:39 +01:00
|
|
|
#endif /* WITH_FORWARDING */
|
2008-03-29 16:21:51 +01:00
|
|
|
|
2007-12-23 13:32:43 +01:00
|
|
|
#if WITH_CLIENT
|
|
|
|
#define UIP_CONF_ACTIVE_OPEN 1
|
|
|
|
#else /* WITH_CLIENT */
|
|
|
|
#define UIP_CONF_ACTIVE_OPEN 0
|
|
|
|
#endif /* WITH_CLIENT */
|
|
|
|
|
|
|
|
#if WITH_DNS
|
2010-01-30 21:54:15 +01:00
|
|
|
#define UIP_CONF_UDP 1
|
2007-12-23 13:32:43 +01:00
|
|
|
#else /* WITH_DNS */
|
2010-01-30 21:54:15 +01:00
|
|
|
#define UIP_CONF_UDP 0
|
2007-12-23 13:32:43 +01:00
|
|
|
#endif /* WITH_DNS */
|
|
|
|
|
|
|
|
#define CTK_CONF_WIDGET_FLAGS 0
|
|
|
|
#define CTK_CONF_WINDOWS 0
|
|
|
|
#define CTK_CONF_WINDOWMOVE 0
|
|
|
|
#define CTK_CONF_WINDOWCLOSE 0
|
|
|
|
#define CTK_CONF_ICONS 0
|
|
|
|
#define CTK_CONF_MENUS 0
|
|
|
|
#define CTK_CONF_SCREENSAVER 0
|
|
|
|
|
|
|
|
#if WITH_MOUSE
|
|
|
|
#define CTK_CONF_MOUSE_SUPPORT 1
|
|
|
|
#else /* WITH_MOUSE */
|
|
|
|
#define CTK_CONF_MOUSE_SUPPORT 0
|
|
|
|
#endif /* WITH_MOUSE */
|
|
|
|
|
2007-12-16 18:03:27 +01:00
|
|
|
#define ctk_arch_keyavail kbhit
|
|
|
|
#define ctk_arch_getkey cgetc
|
|
|
|
#define ctk_arch_isprint isprint
|
|
|
|
|
2009-03-01 13:26:53 +01:00
|
|
|
#define CFS_CONF_OFFSET_TYPE off_t
|
2009-02-28 12:45:35 +01:00
|
|
|
|
2008-01-01 18:44:24 +01:00
|
|
|
#if WITH_PFS
|
2009-02-28 12:45:35 +01:00
|
|
|
#define cfs_open pfs_open
|
|
|
|
#define cfs_close pfs_close
|
|
|
|
#define cfs_read pfs_read
|
|
|
|
#define cfs_write pfs_write
|
|
|
|
#define cfs_seek pfs_seek
|
|
|
|
#define cfs_remove pfs_remove
|
2008-01-01 18:44:24 +01:00
|
|
|
#else /* WITH_PFS */
|
2009-02-28 12:45:35 +01:00
|
|
|
#define CFS_READ (O_RDONLY)
|
|
|
|
#define CFS_WRITE (O_WRONLY | O_CREAT | O_TRUNC)
|
|
|
|
#define CFS_SEEK_SET (SEEK_SET)
|
|
|
|
#define CFS_SEEK_CUR (SEEK_CUR)
|
|
|
|
#define CFS_SEEK_END (SEEK_END)
|
|
|
|
#define cfs_open open
|
|
|
|
#define cfs_close close
|
|
|
|
#define cfs_read read
|
|
|
|
#define cfs_write write
|
|
|
|
#define cfs_seek lseek
|
|
|
|
#define cfs_remove remove
|
2008-01-01 18:44:24 +01:00
|
|
|
#endif /* WITH_PFS */
|
2007-12-23 16:29:19 +01:00
|
|
|
|
2013-11-24 16:57:08 +01:00
|
|
|
#endif /* S502DEF_H_ */
|