0
|
1 |
/*
|
|
2 |
This file is part of CanFestival, a library implementing CanOpen Stack.
|
|
3 |
|
|
4 |
Copyright (C): Edouard TISSERANT and Francis DUPIN
|
|
5 |
|
|
6 |
See COPYING file for copyrights details.
|
|
7 |
|
|
8 |
This library is free software; you can redistribute it and/or
|
|
9 |
modify it under the terms of the GNU Lesser General Public
|
|
10 |
License as published by the Free Software Foundation; either
|
|
11 |
version 2.1 of the License, or (at your option) any later version.
|
|
12 |
|
|
13 |
This library is distributed in the hope that it will be useful,
|
|
14 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
16 |
Lesser General Public License for more details.
|
|
17 |
|
|
18 |
You should have received a copy of the GNU Lesser General Public
|
|
19 |
License along with this library; if not, write to the Free Software
|
|
20 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
21 |
*/
|
|
22 |
|
|
23 |
#ifndef __APPLICFG_LINUX__
|
|
24 |
#define __APPLICFG_LINUX__
|
|
25 |
|
|
26 |
#include <string.h>
|
|
27 |
#include <stdio.h>
|
|
28 |
|
|
29 |
#include "cancfg.h"
|
|
30 |
#include "timerscfg.h"
|
|
31 |
|
|
32 |
// Define the architecture : little_endian or big_endian
|
|
33 |
// -----------------------------------------------------
|
|
34 |
// Test :
|
|
35 |
// UNS32 v = 0x1234ABCD;
|
|
36 |
// char *data = &v;
|
|
37 |
//
|
|
38 |
// Result for a little_endian architecture :
|
|
39 |
// data[0] = 0xCD;
|
|
40 |
// data[1] = 0xAB;
|
|
41 |
// data[2] = 0x34;
|
|
42 |
// data[3] = 0x12;
|
|
43 |
//
|
|
44 |
// Result for a big_endian architecture :
|
|
45 |
// data[0] = 0x12;
|
|
46 |
// data[1] = 0x34;
|
|
47 |
// data[2] = 0xAB;
|
|
48 |
// data[3] = 0xCD;
|
|
49 |
|
|
50 |
// Integers
|
|
51 |
#define INTEGER8 char
|
|
52 |
#define INTEGER16 short
|
|
53 |
#define INTEGER24
|
|
54 |
#define INTEGER32 long
|
|
55 |
#define INTEGER40
|
|
56 |
#define INTEGER48
|
|
57 |
#define INTEGER56
|
|
58 |
#define INTEGER64
|
|
59 |
|
|
60 |
// Unsigned integers
|
|
61 |
#define UNS8 unsigned char
|
|
62 |
#define UNS16 unsigned short
|
|
63 |
#define UNS32 unsigned long
|
|
64 |
#define UNS24
|
|
65 |
#define UNS40
|
|
66 |
#define UNS48
|
|
67 |
#define UNS56
|
|
68 |
#define UNS64
|
|
69 |
|
|
70 |
// Reals
|
|
71 |
#define REAL32 float
|
|
72 |
#define REAL64 double
|
|
73 |
|
|
74 |
/// Definition of error and warning macros
|
|
75 |
// --------------------------------------
|
|
76 |
#if defined DEBUG_ERR_CONSOLE_ON || defined DEBUG_WAR_CONSOLE_ON
|
|
77 |
#include <stdio.h>
|
|
78 |
#endif
|
|
79 |
|
|
80 |
/// Definition of MSG_ERR
|
|
81 |
// ---------------------
|
|
82 |
#ifdef DEBUG_ERR_CONSOLE_ON
|
|
83 |
# define MSG_ERR(num, str, val)/* \
|
|
84 |
printf("%s,%d : 0X%x %s 0X%x \n",__FILE__, __LINE__,num, str, val);*/
|
|
85 |
#else
|
|
86 |
# define MSG_ERR(num, str, val)
|
|
87 |
#endif
|
|
88 |
|
|
89 |
/// Definition of MSG_WAR
|
|
90 |
// ---------------------
|
|
91 |
#ifdef DEBUG_WAR_CONSOLE_ON
|
|
92 |
# define MSG_WAR(num, str, val)/* \
|
|
93 |
printf("%s,%d : 0X%x %s 0X%x \n",__FILE__, __LINE__,num, str, val);*/
|
|
94 |
#else
|
|
95 |
# define MSG_WAR(num, str, val)
|
|
96 |
#endif
|
|
97 |
|
|
98 |
#endif
|