-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathapplicfg.h
73 lines (59 loc) · 1.9 KB
/
applicfg.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
This file is part of CanFestival, a library implementing CanOpen Stack.
Copyright (C): Edouard TISSERANT and Francis DUPIN
AVR Port: Andreas GLAUSER and Peter CHRISTEN
See COPYING file for copyrights details.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __APPLICFG_AVR__
#define __APPLICFG_AVR__
#include <string.h>
#include <stdio.h>
// Integers
#define INTEGER8 signed char
#define INTEGER16 short
#define INTEGER24
#define INTEGER32 long
#define INTEGER40
#define INTEGER48
#define INTEGER56
#define INTEGER64
// Unsigned integers
#define UNS8 unsigned char
#define UNS16 unsigned short
#define UNS32 unsigned long
// Reals
#define REAL32 float
#define REAL64 double
// MSG functions
// not finished, the strings have to be placed to the flash and printed out
// using the printf_P function
/// Definition of MSG_ERR
// ---------------------
// #define DEBUG_ERR_CONSOLE_ON
#ifdef DEBUG_ERR_CONSOLE_ON
#define MSG_ERR(num, str, val) \
printf(str);
#else
# define MSG_ERR(num, str, val)
#endif
/// Definition of MSG_WAR
// ---------------------
// #define DEBUG_WAR_CONSOLE_ON
#ifdef DEBUG_WAR_CONSOLE_ON
#define MSG_WAR(num, str, val) \
printf(str);
#else
# define MSG_WAR(num, str, val)
#endif
#endif