-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathSDO.cs
527 lines (418 loc) · 16.1 KB
/
SDO.cs
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
/*
This file is part of libCanopenSimple.
libCanopenSimple is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
libCanopenSimple 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with libCanopenSimple. If not, see <http://www.gnu.org/licenses/>.
Copyright(c) 2017 Robin Cornelius <[email protected]>
*/
using System;
using System.Collections.Generic;
using System.Threading;
namespace libCanopenSimple
{
/// <summary>
/// The SDO class encapusulates an SDO transfer and its associated data
/// </summary>
public class SDO
{
/// <summary>
/// Direction of the SDO transfer
/// </summary>
public enum direction
{
SDO_READ = 0,
SDO_WRITE = 1,
}
/// <summary>
/// Possible SDO states used by simple handshake statemachine
/// </summary>
public enum SDO_STATE
{
SDO_INIT,
SDO_SENT,
SDO_HANDSHAKE,
SDO_FINISHED,
SDO_ERROR,
}
/// <summary>
/// Expitided data buffer, if transfer is 4 bytes or less, its here
/// </summary>
public readonly byte node;
//FIX me i was using all these from outside this class
//should see if that is really needed or if better accessors are required
//may be readonly access etc.
public byte[] databuffer = null;
public SDO_STATE state;
public UInt16 index;
public byte subindex;
public UInt32 expitideddata;
public bool expitided = false;
public int returnlen = 0;
static List<SDO> activeSDO = new List<SDO>();
private Action<SDO> completedcallback;
private direction dir;
private UInt32 totaldata;
private libCanopenSimple can;
private bool lasttoggle = false;
private DateTime timeout;
private ManualResetEvent finishedevent;
private debuglevel dbglevel;
/// <summary>
/// Construct a new SDO object
/// </summary>
/// <param name="can">a libCanopenSimple object that will give access to the hardware</param>
/// <param name="node">The note to talk to (UInt16)</param>
/// <param name="index">The index in the object dictionary to access</param>
/// <param name="subindex">The subindex in the object dictionary to access</param>
/// <param name="dir">Direction of transfer</param>
/// <param name="completedcallback">Optional, completed callback (or null if not required)</param>
/// <param name="databuffer">A byte array of data to be transfered to or from if more than 4 bytes</param>
public SDO(libCanopenSimple can, byte node, UInt16 index, byte subindex, direction dir, Action<SDO> completedcallback, byte[] databuffer)
{
this.can = can;
this.index = index;
this.subindex = subindex;
this.node = node;
this.dir = dir;
this.completedcallback = completedcallback;
this.databuffer = databuffer;
finishedevent = new ManualResetEvent(false);
state = SDO_STATE.SDO_INIT;
dbglevel = can.dbglevel;
}
/// <summary>
/// Add this SDO object to the active list
/// </summary>
public void sendSDO()
{
lock (activeSDO)
activeSDO.Add(this);
}
public static bool isEmpty()
{
return activeSDO.Count == 0;
}
/// <summary>
/// Has the SDO transfer finished?
/// </summary>
/// <returns>True if the SDO has finished and fired its finished event</returns>
public bool WaitOne()
{
return finishedevent.WaitOne();
}
/// <summary>
/// SDO pump, call this often
/// </summary>
public static void kick_SDO()
{
List<SDO> tokill = new List<SDO>();
lock (activeSDO)
{
foreach (SDO s in activeSDO)
{
s.kick_SDOp();
if (s.state == SDO_STATE.SDO_FINISHED || s.state == SDO_STATE.SDO_ERROR)
{
tokill.Add(s);
}
}
}
foreach (SDO s in tokill)
{
lock (activeSDO)
activeSDO.Remove(s);
s.SDOFinish();
}
}
/// <summary>
/// State machine for a specific SDO instance
/// </summary>
private void kick_SDOp()
{
if (state != SDO_STATE.SDO_INIT && DateTime.Now > timeout)
{
state = SDO_STATE.SDO_ERROR;
Console.WriteLine("SDO Timeout Error on {0:x4}/{1:x2} {2:x8}", this.index, this.subindex, expitideddata);
if (completedcallback != null)
completedcallback(this);
return;
}
if (state == SDO_STATE.SDO_INIT)
{
timeout = DateTime.Now + new TimeSpan(0, 0, 1);
state = SDO_STATE.SDO_SENT;
if (dir == direction.SDO_READ)
{
byte cmd = 0x40;
byte[] payload = new byte[4];
sendpacket(cmd, payload);
}
if (dir == direction.SDO_WRITE)
{
bool wpsent = false;
byte cmd = 0;
expitided = true;
switch (databuffer.Length)
{
case 1:
cmd = 0x2f;
break;
case 2:
cmd = 0x2b;
break;
case 3:
cmd = 0x27;
break;
case 4:
cmd = 0x23;
break;
default:
//Bigger than 4 bytes we use segmented transfer
cmd = 0x21;
expitided = false;
byte[] payload = new byte[4];
payload[0] = (byte)databuffer.Length;
payload[1] = (byte)(databuffer.Length >> 8);
payload[2] = (byte)(databuffer.Length >> 16);
payload[3] = (byte)(databuffer.Length >> 24);
expitideddata = (UInt32)databuffer.Length;
totaldata = 0;
wpsent = true;
sendpacket(cmd, payload);
break;
}
if (wpsent == false)
sendpacket(cmd, databuffer);
}
}
}
/// <summary>
/// Send a SDO packet, with command and payload, should be only called from SDO state machine
/// </summary>
/// <param name="cmd">SDO command byte</param>
/// <param name="payload">Data payload to send</param>
private void sendpacket(byte cmd, byte[] payload)
{
canpacket p = new canpacket();
p.cob = (UInt16)(0x600 + node);
p.len = 8;
p.data = new byte[8];
p.data[0] = cmd;
p.data[1] = (byte)index;
p.data[2] = (byte)(index >> 8);
p.data[3] = subindex;
int sendlength = 4;
if (payload.Length < 4)
sendlength = payload.Length;
for (int x = 0; x < sendlength; x++)
{
p.data[4 + x] = payload[x];
}
if (dbglevel == debuglevel.DEBUG_ALL)
Console.WriteLine(String.Format("Sending a new SDO packet: {0}", p.ToString()));
if(can.isopen())
can.SendPacket(p);
}
/// <summary>
/// Segmented transfer update function, should be only called from SDO state machine
/// </summary>
/// <param name="cmd">SDO command byte</param>
/// <param name="payload">Data payload</param>
private void sendpacketsegment(byte cmd, byte[] payload)
{
canpacket p = new canpacket();
p.cob = (UInt16)(0x600 + node);
p.len = 8;
p.data = new byte[8];
p.data[0] = cmd;
for (int x = 0; x < payload.Length; x++)
{
p.data[1 + x] = payload[x];
}
if (dbglevel == debuglevel.DEBUG_ALL)
Console.WriteLine(String.Format("Sending a new segmented SDO packet: {0}", p.ToString()));
can.SendPacket(p);
}
/// <summary>
/// Force finish the SDO and trigger its finished event
/// </summary>
public void SDOFinish()
{
can.SDOcallbacks.Remove((UInt16)(this.node + 0x580));
finishedevent.Set();
}
/// <summary>
/// SDO Instance processor, process current SDO reply and decide what to do next
/// </summary>
/// <param name="cp">SDO Canpacket to process</param>
/// <returns></returns>
public bool SDOProcess(canpacket cp)
{
int SCS = cp.data[0] >> 5; //7-5
int n = (0x03 & (cp.data[0] >> 2)); //3-2 data size for normal packets
returnlen = 8*(4-n);
int e = (0x01 & (cp.data[0] >> 1)); // expidited flag
int s = (cp.data[0] & 0x01); // data size set flag
int sn = (0x07 & (cp.data[0] >> 1)); //3-1 data size for segment packets
int t = (0x01 & (cp.data[0] >> 4)); //toggle flag
int c = 0x01 & cp.data[0]; //More segments to upload?
//ERROR abort
if (SCS == 0x04)
{
expitideddata = (UInt32)(cp.data[4] + (cp.data[5] << 8) + (cp.data[6] << 16) + (cp.data[7] << 24));
databuffer = BitConverter.GetBytes(expitideddata);
state = SDO_STATE.SDO_ERROR;
Console.WriteLine("SDO Error on {0:x4}/{1:x2} {2:x8}", this.index, this.subindex, expitideddata);
if (completedcallback != null)
completedcallback(this);
return true;
}
//Write complete
if (SCS == 0x03)
{
UInt16 index = (UInt16)(cp.data[1] + (cp.data[2] << 8));
byte sub = cp.data[3];
int node = cp.cob - 0x580;
foreach (SDO sdo in activeSDO)
{
if (sdo.node == node)
{
if ((index == sdo.index && sub == sdo.subindex)) //if segments break its here
{
if (expitided == false)
{
state = SDO_STATE.SDO_HANDSHAKE;
requestNextSegment(false);
return false;
}
}
}
}
state = SDO_STATE.SDO_FINISHED;
if (completedcallback != null)
completedcallback(this);
return true;
}
//Write segment complete
if (SCS == 0x01)
{
if (totaldata < expitideddata)
{
lasttoggle = !lasttoggle;
requestNextSegment(lasttoggle);
}
else
{
state = SDO_STATE.SDO_FINISHED;
if (completedcallback != null)
completedcallback(this);
}
}
//if expedited just handle the data
if (SCS == 0x02 && e == 1)
{
//Expidited and length are set so its a regular short transfer
expitideddata = (UInt32)(cp.data[4] + (cp.data[5] << 8) + (cp.data[6] << 16) + (cp.data[7] << 24));
databuffer = BitConverter.GetBytes(expitideddata);
state = SDO_STATE.SDO_FINISHED;
if (completedcallback != null)
{
try
{
completedcallback(this);
}
catch { }
}
return true;
}
if (SCS == 0x02)
{
UInt32 count = (UInt32)(cp.data[4] + (cp.data[5] << 8) + (cp.data[6] << 16) + (cp.data[7] << 24));
Console.WriteLine("RX Segmented transfer start length is {0}", count);
expitideddata = count;
databuffer = new byte[expitideddata];
totaldata = 0;
//Request next segment
requestNextSegment(false); //toggle off on first request
return false;
}
//segmented transfer
UInt32 scount = (UInt32)(7 - sn);
//Segments toggle on
if (SCS == 0x00)
{
// Console.WriteLine("RX Segmented transfer update length is {0} -- {1}", scount, totaldata);
for (int x = 0; x < scount; x++)
{
if ((totaldata + x) < databuffer.Length)
databuffer[totaldata + x] = cp.data[1 + x];
}
totaldata += 7;
if ((totaldata < expitideddata) && c == 0)
{
lasttoggle = !lasttoggle;
requestNextSegment(lasttoggle);
}
else
{
state = SDO_STATE.SDO_FINISHED;
if (completedcallback != null)
completedcallback(this);
}
}
return false;
}
/// <summary>
/// Request the next segment in a segmented transfet
/// </summary>
/// <param name="toggle">Segmented transfer toggle flag, should alternate for each successive transfer</param>
private void requestNextSegment(bool toggle)
{
timeout = DateTime.Now + new TimeSpan(0, 0, 1);
if (dir == direction.SDO_READ)
{
byte cmd = 0x60;
if (toggle)
cmd |= 0x70;
sendpacket(cmd, new byte[4]);
}
else
{
byte cmd = 0x00;
if (toggle)
cmd |= 0x10;
int bytecount = (int)(databuffer.Length - totaldata); //11 - 7
byte[] nextdata;
if (bytecount >= 7)
{
bytecount = 7;
}
nextdata = new byte[bytecount];
for (int x = 0; x < bytecount; x++)
{
if (databuffer.Length > (totaldata + x))
nextdata[x] = databuffer[totaldata + x];
}
if (totaldata + 7 >= databuffer.Length)
{
cmd |= 0x01; //END of packet sequence
}
if (bytecount != 7)
{
int n = 7 - bytecount;
n = n << 1;
cmd |= (byte)n;
}
sendpacketsegment(cmd, nextdata);
totaldata += (uint)bytecount;
}
}
}
}