]>
Commit | Line | Data |
---|---|---|
534983d7 | 1 | //----------------------------------------------------------------------------- |
2 | // Hagen Fritsch - June 2010 | |
3 | // | |
4 | // This code is licensed to you under the terms of the GNU GPL, version 2 or, | |
5 | // at your option, any later version. See the LICENSE.txt file for the text of | |
6 | // the license. | |
7 | ||
8 | //----------------------------------------------------------------------------- | |
9 | // Interlib Definitions | |
10 | //----------------------------------------------------------------------------- | |
11 | ||
12 | #ifndef __COMMON_H | |
13 | #define __COMMON_H | |
14 | ||
902cb3c0 | 15 | #include <stddef.h> |
873014de | 16 | #include <stdint.h> |
902cb3c0 | 17 | #include <stdbool.h> |
18 | #include <at91sam7s512.h> | |
d19929cb | 19 | typedef unsigned char byte_t; |
873014de | 20 | |
759c16b3 | 21 | #ifndef MIN |
22 | # define MIN(a, b) (((a) < (b)) ? (a) : (b)) | |
23 | #endif | |
24 | #ifndef MAX | |
25 | # define MAX(a, b) (((a) > (b)) ? (a) : (b)) | |
26 | #endif | |
cf194819 | 27 | #ifndef ABS |
28 | # define ABS(a) ( ((a)<0) ? -(a) : (a) ) | |
29 | #endif | |
30 | ||
28fdb04f | 31 | |
ce55f5a2 | 32 | #define RAMFUNC __attribute((long_call, section(".ramfunc"))) |
33 | ||
534983d7 | 34 | #endif |