]> rtime.felk.cvut.cz Git - CanFestival-3.git/blob - include/def.h
There was a variable declaration after a statement
[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 /* SDOrx ccs: client command specifier */
82 #define DOWNLOAD_SEGMENT_REQUEST     0
83 #define INITIATE_DOWNLOAD_REQUEST    1
84 #define INITIATE_UPLOAD_REQUEST      2
85 #define UPLOAD_SEGMENT_REQUEST       3
86 #define ABORT_TRANSFER_REQUEST       4
87
88 /* SDOtx scs: server command specifier */
89 #define UPLOAD_SEGMENT_RESPONSE      0
90 #define DOWNLOAD_SEGMENT_RESPONSE    1
91 #define INITIATE_DOWNLOAD_RESPONSE   3
92 #define INITIATE_UPLOAD_RESPONSE     2
93 #define ABORT_TRANSFER_REQUEST       4
94
95
96 /*  Function Codes 
97    ---------------
98   defined in the canopen DS301 
99 */
100 #define NMT        0x0
101 #define SYNC       0x1
102 #define TIME_STAMP 0x2
103 #define PDO1tx     0x3
104 #define PDO1rx     0x4
105 #define PDO2tx     0x5
106 #define PDO2rx     0x6
107 #define PDO3tx     0x7
108 #define PDO3rx     0x8
109 #define PDO4tx     0x9
110 #define PDO4rx     0xA
111 #define SDOtx      0xB
112 #define SDOrx      0xC
113 #define NODE_GUARD 0xE
114
115 /* NMT Command Specifier, sent by master to change a slave state */
116 /* ------------------------------------------------------------- */
117 /* Should not be modified */
118 #define NMT_Start_Node              0x01
119 #define NMT_Stop_Node               0x02
120 #define NMT_Enter_PreOperational    0x80
121 #define NMT_Reset_Node              0x81
122 #define NMT_Reset_Comunication      0x82
123
124 /* constantes used in the different state machines */
125 /* ----------------------------------------------- */
126 /* Must not be modified */
127 #define state1  0x01
128 #define state2  0x02
129 #define state3  0x03
130 #define state4  0x04
131 #define state5  0x05
132 #define state6  0x06
133 #define state7  0x07
134 #define state8  0x08
135 #define state9  0x09
136 #define state10 0x0A
137 #define state11 0x0B
138
139 #endif /* __def_h__ */
140