author | etisserant |
Wed, 18 Jun 2008 10:57:30 +0200 | |
changeset 480 | d0d76932ad74 |
parent 426 | 8011552b1319 |
child 528 | 0a30e161d63c |
permissions | -rw-r--r-- |
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 __pdo_h__ |
|
24 |
#define __pdo_h__ |
|
25 |
||
26 |
#include <applicfg.h> |
|
27 |
#include <def.h> |
|
28 |
||
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
29 |
#include "can.h" |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
30 |
|
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
31 |
typedef struct struct_s_PDO_status s_PDO_status; |
0 | 32 |
|
33 |
#include "data.h" |
|
34 |
||
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
35 |
/* Status of the TPDO : */ |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
36 |
#define PDO_INHIBITED 0x01 |
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
37 |
#define PDO_RTR_SYNC_READY 0x01 |
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
38 |
|
0 | 39 |
/** The PDO structure */ |
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
40 |
struct struct_s_PDO_status { |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
41 |
UNS8 transmit_type_parameter; |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
42 |
TIMER_HANDLE event_timer; |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
43 |
TIMER_HANDLE inhibit_timer; |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
44 |
Message last_message; |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
45 |
}; |
0 | 46 |
|
366 | 47 |
#define s_PDO_status_Initializer {0, TIMER_NONE, TIMER_NONE, Message_Initializer} |
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
48 |
|
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
49 |
/** definitions of the different types of PDOs' transmission |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
50 |
* |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
51 |
* SYNCHRO(n) means that the PDO will be transmited every n SYNC signal. |
0 | 52 |
*/ |
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
53 |
#define TRANS_EVERY_N_SYNC(n) (n) /*n = 1 to 240 */ |
426
8011552b1319
Preliminary support for TRANS_SYNC_ACYCLIC (0) transmit type.
etisserant
parents:
366
diff
changeset
|
54 |
#define TRANS_SYNC_ACYCLIC 0 /* Trans after reception of n SYNC. n = 1 to 240 */ |
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
55 |
#define TRANS_SYNC_MIN 1 /* Trans after reception of n SYNC. n = 1 to 240 */ |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
56 |
#define TRANS_SYNC_MAX 240 /* Trans after reception of n SYNC. n = 1 to 240 */ |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
57 |
#define TRANS_RTR_SYNC 252 /* Transmission on request */ |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
58 |
#define TRANS_RTR 253 /* Transmission on request */ |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
59 |
#define TRANS_EVENT_SPECIFIC 254 /* Transmission on event */ |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
60 |
#define TRANS_EVENT_PROFILE 255 /* Transmission on event */ |
0 | 61 |
|
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
62 |
/** Prepare the PDO defined at index to be sent |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
63 |
* |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
64 |
* |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
65 |
* |
0 | 66 |
* Copy all the data to transmit in process_var |
67 |
* *pwCobId : returns the value of the cobid. (subindex 1) |
|
68 |
* Return 0 or 0xFF if error. |
|
69 |
*/ |
|
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
70 |
UNS8 buildPDO(CO_Data* d, UNS8 numPdo, Message *pdo); |
0 | 71 |
|
72 |
/** Transmit a PDO request frame on the bus bus_id |
|
73 |
* to the slave. |
|
74 |
* bus_id is hardware dependant |
|
75 |
* Returns 0xFF if error, other in success. |
|
76 |
*/ |
|
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
77 |
UNS8 sendPDOrequest( CO_Data* d, UNS16 RPDOIndex ); |
0 | 78 |
|
79 |
/** Compute a PDO frame reception |
|
80 |
* bus_id is hardware dependant |
|
81 |
* return 0xFF if error, else return 0 |
|
82 |
*/ |
|
83 |
UNS8 proceedPDO (CO_Data* d, Message *m); |
|
84 |
||
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
85 |
/** Used by the application to signal changes in process data |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
86 |
* that could be mapped to some TPDO. |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
87 |
* This do not necessarily imply PDO emission. |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
88 |
* Function iterates on all TPDO and look TPDO transmit |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
89 |
* type and content change before sending it. |
0 | 90 |
*/ |
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
91 |
UNS8 sendPDOevent (CO_Data* d); |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
92 |
|
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
93 |
/** Function iterates on all TPDO and look TPDO transmit |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
94 |
* type and content change before sending it. |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
95 |
*/ |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
96 |
UNS8 _sendPDOevent(CO_Data* d, UNS8 isSyncEvent); |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
97 |
|
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
98 |
|
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
99 |
void PDOInit(CO_Data* d); |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
100 |
void PDOStop(CO_Data* d); |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
101 |
void PDOEventTimerAlarm(CO_Data* d, UNS32 pdoNum); |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
102 |
void PDOInhibitTimerAlarm(CO_Data* d, UNS32 pdoNum); |
0 | 103 |
|
201 | 104 |
/* copy bit per bit in little endian */ |
105 |
void CopyBits(UNS8 NbBits, UNS8* SrcByteIndex, UNS8 SrcBitIndex, UNS8 SrcBigEndian, UNS8* DestByteIndex, UNS8 DestBitIndex, UNS8 DestBigEndian); |
|
0 | 106 |
#endif |