]> rtime.felk.cvut.cz Git - CanFestival-3.git/blob - include/def.h
Modified codes in MSG_ERR and MSG_WAR in emcy.c
[CanFestival-3.git] / include / def.h
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
24 #ifndef __def_h__
25 #define __def_h__
26
27 #include "config.h"
28
29 /** definitions used for object dictionary access. ie SDO Abort codes . (See DS 301 v.4.02 p.48)
30  */
31 #define OD_SUCCESSFUL                0x00000000
32 #define OD_READ_NOT_ALLOWED          0x06010001
33 #define OD_WRITE_NOT_ALLOWED         0x06010002
34 #define OD_NO_SUCH_OBJECT            0x06020000
35 #define OD_NOT_MAPPABLE              0x06040041
36 #define OD_LENGTH_DATA_INVALID       0x06070010
37 #define OD_NO_SUCH_SUBINDEX          0x06090011
38 #define OD_VALUE_RANGE_EXCEEDED      0x06090030 /* Value range test result */
39 #define OD_VALUE_TOO_LOW             0x06090031 /* Value range test result */
40 #define OD_VALUE_TOO_HIGH            0x06090032 /* Value range test result */
41 /* Others SDO abort codes 
42  */
43 #define SDOABT_TOGGLE_NOT_ALTERNED   0x05030000
44 #define SDOABT_TIMED_OUT             0x05040000
45 #define SDOABT_OUT_OF_MEMORY         0x05040005 /* Size data exceed SDO_MAX_LENGTH_TRANSFERT */
46 #define SDOABT_GENERAL_ERROR         0x08000000 /* Error size of SDO message */
47 #define SDOABT_LOCAL_CTRL_ERROR      0x08000021 
48
49 /******************** CONSTANTS ****************/
50
51 /** Constantes which permit to define if a PDO frame
52    is a request one or a data one
53 */
54 /* Should not be modified */
55 #define REQUEST 1
56 #define NOT_A_REQUEST 0
57
58 /* Misc constants */
59 /* -------------- */
60 /* Should not be modified */
61 #define Rx 0
62 #define Tx 1
63 #define TRUE  1
64 #define FALSE 0
65
66     
67 /** Status of the SDO transmission
68  */
69 #define SDO_RESET                0x0      /* Transmission not started. Init state. */
70 #define SDO_FINISHED             0x1      /* data are available */                          
71 #define SDO_ABORTED_RCV          0x80     /* Received an abort message. Data not available */
72 #define SDO_ABORTED_INTERNAL     0x85     /* Aborted but not because of an abort message. */
73 #define SDO_DOWNLOAD_IN_PROGRESS 0x2 
74 #define SDO_UPLOAD_IN_PROGRESS   0x3   
75
76 /* Status of the node during the SDO transfert : */
77 #define SDO_SERVER  0x1
78 #define SDO_CLIENT  0x2
79 #define SDO_UNKNOWN 0x3             
80
81 /*  Function Codes 
82    ---------------
83   defined in the canopen DS301 
84 */
85 #define NMT        0x0
86 #define SYNC       0x1
87 #define TIME_STAMP 0x2
88 #define PDO1tx     0x3
89 #define PDO1rx     0x4
90 #define PDO2tx     0x5
91 #define PDO2rx     0x6
92 #define PDO3tx     0x7
93 #define PDO3rx     0x8
94 #define PDO4tx     0x9
95 #define PDO4rx     0xA
96 #define SDOtx      0xB
97 #define SDOrx      0xC
98 #define NODE_GUARD 0xE
99
100 /* NMT Command Specifier, sent by master to change a slave state */
101 /* ------------------------------------------------------------- */
102 /* Should not be modified */
103 #define NMT_Start_Node              0x01
104 #define NMT_Stop_Node               0x02
105 #define NMT_Enter_PreOperational    0x80
106 #define NMT_Reset_Node              0x81
107 #define NMT_Reset_Comunication      0x82
108
109 /* constantes used in the different state machines */
110 /* ----------------------------------------------- */
111 /* Must not be modified */
112 #define state1  0x01
113 #define state2  0x02
114 #define state3  0x03
115 #define state4  0x04
116 #define state5  0x05
117 #define state6  0x06
118 #define state7  0x07
119 #define state8  0x08
120 #define state9  0x09
121 #define state10 0x0A
122 #define state11 0x0B
123
124 #endif /* __def_h__ */
125