2010-07-13 21:39:30 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Hagen Fritsch - June 2010
|
|
|
|
//
|
|
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
|
|
// the license.
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Interlib Definitions
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef __COMMON_H
|
|
|
|
#define __COMMON_H
|
|
|
|
|
2012-12-05 07:39:18 +08:00
|
|
|
#include <stddef.h>
|
2011-06-07 22:30:07 +08:00
|
|
|
#include <stdint.h>
|
2012-12-05 07:39:18 +08:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <at91sam7s512.h>
|
2012-09-18 21:53:17 +08:00
|
|
|
typedef unsigned char byte_t;
|
2011-06-07 22:30:07 +08:00
|
|
|
|
2013-03-14 23:03:04 +08:00
|
|
|
#ifndef MIN
|
|
|
|
# define MIN(a, b) (((a) < (b)) ? (a) : (b))
|
|
|
|
#endif
|
|
|
|
#ifndef MAX
|
|
|
|
# define MAX(a, b) (((a) > (b)) ? (a) : (b))
|
|
|
|
#endif
|
2013-02-28 23:11:52 +08:00
|
|
|
|
2013-04-08 17:18:39 +08:00
|
|
|
#define RAMFUNC __attribute((long_call, section(".ramfunc")))
|
|
|
|
|
2010-07-13 21:39:30 +08:00
|
|
|
#endif
|