2010-07-13 13:39:30 +00: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-04 23:39:18 +00:00
|
|
|
#include <stddef.h>
|
2011-06-07 14:30:07 +00:00
|
|
|
#include <stdint.h>
|
2012-12-04 23:39:18 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <at91sam7s512.h>
|
2012-09-18 13:53:17 +00:00
|
|
|
typedef unsigned char byte_t;
|
2011-06-07 14:30:07 +00:00
|
|
|
|
2013-03-14 15:03:04 +00: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 15:11:52 +00:00
|
|
|
|
2013-04-08 09:18:39 +00:00
|
|
|
#define RAMFUNC __attribute((long_call, section(".ramfunc")))
|
|
|
|
|
2010-07-13 13:39:30 +00:00
|
|
|
#endif
|