79 lines
2.6 KiB
C
79 lines
2.6 KiB
C
|
/*
|
||
|
* Copyright (c) 2007, Takahide Matsutsuka.
|
||
|
* 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. The name of the author may not be used to endorse or promote
|
||
|
* products derived from this software without specific prior
|
||
|
* written permission.
|
||
|
*
|
||
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
|
||
|
*
|
||
|
* $Id: contiki-sdcc-conf.h,v 1.1 2007/08/30 14:39:16 matsutsuka Exp $
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* \file
|
||
|
* This file contains a set of configuration for using SDCC as a compiler.
|
||
|
*
|
||
|
* \author
|
||
|
* Takahide Matsutsuka <markn@markn.org>
|
||
|
*/
|
||
|
|
||
|
#ifndef __CONTIKI_SDCC_CONF_H__
|
||
|
#define __CONTIKI_SDCC_CONF_H__
|
||
|
|
||
|
#define CC_CONF_FUNCTION_POINTER_ARGS 1
|
||
|
#define CC_CONF_FASTCALL
|
||
|
#define CC_CONF_VA_ARGS 1
|
||
|
#define CC_CONF_UNSIGNED_CHAR_BUGS 1
|
||
|
#define CC_CONF_REGISTER_ARGS 0
|
||
|
|
||
|
|
||
|
/* Generic types. */
|
||
|
typedef unsigned char u8_t; /* 8 bit type */
|
||
|
typedef unsigned short u16_t; /* 16 bit type */
|
||
|
typedef unsigned long u32_t; /* 32 bit type */
|
||
|
typedef signed long s32_t; /* 32 bit type */
|
||
|
typedef unsigned short uip_stats_t;
|
||
|
#ifndef _SIZE_T_DEFINED
|
||
|
#define _SIZE_T_DEFINED
|
||
|
typedef unsigned int size_t;
|
||
|
#endif
|
||
|
|
||
|
/* Compiler configurations */
|
||
|
#define CCIF
|
||
|
#define CLIF
|
||
|
|
||
|
/* uIP configurations */
|
||
|
/* uip_add32 */
|
||
|
#define UIP_ARCH_ADD32 1
|
||
|
|
||
|
#define uip_ipaddr_copy(dest, src) \
|
||
|
memcpy(dest, src, sizeof(*dest))
|
||
|
#define CC_CONF_ASSIGN_AGGREGATE(dest, src) \
|
||
|
memcpy(dest, src, sizeof(*dest))
|
||
|
#define CC_CONF_INC_CAST_POINTER(type, data) \
|
||
|
data = ((type) data) + 1
|
||
|
|
||
|
#endif /* __CONTIKI_SDCC_CONF_H__ */
|