forked from MiniSoda/IEC104
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiec104_types.h
592 lines (519 loc) · 15.2 KB
/
iec104_types.h
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
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
/*
* Copyright (C) 2005 by Grigoriy A. Sitkarev
* sitkarev@komi.tgk-9.ru
*
* Adapted by Ricardo Olsen from original in http://mrts-ng.googlecode.com
*
* This program 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 2 of the License, or
* (at your option) any later version.
*
* This program 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 this program; if not, write to the
* Free Software Foundation, Inc.,
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "stdafx.h"
#ifndef __IEC104_TYPES_H
#define __IEC104_TYPES_H
#pragma pack(push,1)
// 32-bit string state and change data unit
struct iec_stcd {
union {
unsigned short st;
struct {
unsigned char st1 :1;
unsigned char st2 :1;
unsigned char st3 :1;
unsigned char st4 :1;
unsigned char st5 :1;
unsigned char st6 :1;
unsigned char st7 :1;
unsigned char st8 :1;
unsigned char st9 :1;
unsigned char st10 :1;
unsigned char st11 :1;
unsigned char st12 :1;
unsigned char st13 :1;
unsigned char st14 :1;
unsigned char st15 :1;
unsigned char st16 :1;
};
};
union {
unsigned short cd;
struct {
unsigned char cd1 :1;
unsigned char cd2 :1;
unsigned char cd3 :1;
unsigned char cd4 :1;
unsigned char cd5 :1;
unsigned char cd6 :1;
unsigned char cd7 :1;
unsigned char cd8 :1;
unsigned char cd9 :1;
unsigned char cd10 :1;
unsigned char cd11 :1;
unsigned char cd12 :1;
unsigned char cd13 :1;
unsigned char cd14 :1;
unsigned char cd15 :1;
unsigned char cd16 :1;
};
};
};
// CP56Time2a timestamp
struct cp56time2a {
unsigned short msec;
unsigned char min :6;
unsigned char res1 :1;
unsigned char iv :1;
unsigned char hour :5;
unsigned char res2 :2;
unsigned char su :1;
unsigned char mday :5;
unsigned char wday :3;
unsigned char month :4;
unsigned char res3 :4;
unsigned char year :7;
unsigned char res4 :1;
};
typedef struct cp56time2a cp56time2a;
struct iec_qualif
{
unsigned char var :2;
unsigned char res :2;
unsigned char bl :1; // blocked/not blocked
unsigned char sb :1; // substituted/not substituted
unsigned char nt :1; // not topical/topical
unsigned char iv :1; // valid/invalid
};
// M_SP_NA_1 - single point information with quality description
struct iec_type1 {
unsigned char sp :1; // single point information
unsigned char res :3;
unsigned char bl :1; // blocked/not blocked
unsigned char sb :1; // substituted/not substituted
unsigned char nt :1; // not topical/topical
unsigned char iv :1; // valid/invalid
};
// M_DP_NA_1 - double point information with quality description
struct iec_type3 {
unsigned char dp :2; // double point information
unsigned char res :2;
unsigned char bl :1; // blocked/not blocked
unsigned char sb :1; // substituted/not substituted
unsigned char nt :1; // not topical/topical
unsigned char iv :1; // valid/invalid
};
// M_ST_NA_1 - step position
struct iec_type5 {
unsigned char mv :7; // value
unsigned char t :1; // transient flag
unsigned char ov :1; // overflow/no overflow
unsigned char res :3;
unsigned char bl :1; // blocked/not blocked
unsigned char sb :1; // substituted/not substituted
unsigned char nt :1; // not topical/topical
unsigned char iv :1; // valid/invalid
};
// M_BO_NA_1 - state and change information bit string
struct iec_type7 {
struct iec_stcd stcd;
unsigned char ov :1; // overflow/no overflow
unsigned char res :3;
unsigned char bl :1; // blocked/not blocked
unsigned char sb :1; // substituted/not substituted
unsigned char nt :1; // not topical/topical
unsigned char iv :1; // valid/invalid
};
// M_ME_NA_1 - normalized measured value
struct iec_type9 {
unsigned short mv; // normalized value
unsigned char ov :1; // overflow/no overflow
unsigned char res :3;
unsigned char bl :1; // blocked/not blocked
unsigned char sb :1; // substituted/not substituted
unsigned char nt :1; // not topical/topical
unsigned char iv :1; // valid/invalid
};
// M_ME_NB_1 - scaled measured value
struct iec_type11 {
unsigned short mv; // scaled value
unsigned char ov :1; // overflow/no overflow
unsigned char res :3;
unsigned char bl :1; // blocked/not blocked
unsigned char sb :1; // substituted/not substituted
unsigned char nt :1; // not topical/topical
unsigned char iv :1; // valid/invalid
};
// M_ME_NC_1 - short floating point measured value
struct iec_type13 {
float mv;
unsigned char ov :1; // overflow/no overflow
unsigned char res :3;
unsigned char bl :1; // blocked/not blocked
unsigned char sb :1; // substituted/not substituted
unsigned char nt :1; // not topical/topical
unsigned char iv :1; // valid/invalid
};
// M_IT_NA_1 - 遥脉,电能累积量
struct iec_type15 {
unsigned long mv; //数值
unsigned char sqNum:5;//序号
unsigned char CY:1;
unsigned char CA:1;
unsigned char IV:1;
};
// M_ME_ND_1 - 不带品质的归一化遥测
struct iec_type21 {
short mv; // normalized value
};
// M_SP_TB_1 - single point information with quality description and time tag
struct iec_type30 {
unsigned char sp :1; // single point information
unsigned char res :3;
unsigned char bl :1; // blocked/not blocked
unsigned char sb :1; // substituted/not substituted
unsigned char nt :1; // not topical/topical
unsigned char iv :1; // valid/invalid
cp56time2a time;
};
// M_DP_TB_1 - double point information with quality description and time tag
struct iec_type31 {
unsigned char dp :2; // double point information
unsigned char res :2;
unsigned char bl :1; // blocked/not blocked
unsigned char sb :1; // substituted/not substituted
unsigned char nt :1; // not topical/topical
unsigned char iv :1; // valid/invalid
cp56time2a time;
};
// M_ST_TB_1 - step position with time tag
struct iec_type32 {
unsigned char mv :7; // value
unsigned char t :1; // transient flag
unsigned char ov :1; // overflow/no overflow
unsigned char res :3;
unsigned char bl :1; // blocked/not blocked
unsigned char sb :1; // substituted/not substituted
unsigned char nt :1; // not topical/topical
unsigned char iv :1; // valid/invalid
cp56time2a time;
};
// M_BO_TB_1 - state and change information bit string and time tag
struct iec_type33 {
struct iec_stcd stcd;
unsigned char ov :1; // overflow/no overflow
unsigned char res :3;
unsigned char bl :1; // blocked/not blocked
unsigned char sb :1; // substituted/not substituted
unsigned char nt :1; // not topical/topical
unsigned char iv :1; // valid/invalid
cp56time2a time;
};
// M_ME_TD_1 - scaled measured value with time tag
struct iec_type34 {
unsigned short mv; // scaled value
unsigned char ov :1; // overflow/no overflow
unsigned char res :3;
unsigned char bl :1; // blocked/not blocked
unsigned char sb :1; // substituted/not substituted
unsigned char nt :1; // not topical/topical
unsigned char iv :1; // valid/invalid
cp56time2a time;
};
// M_ME_TE_1 - scaled measured value with time tag
struct iec_type35 {
unsigned short mv; // scaled value
unsigned char ov :1; // overflow/no overflow
unsigned char res :3;
unsigned char bl :1; // blocked/not blocked
unsigned char sb :1; // substituted/not substituted
unsigned char nt :1; // not topical/topical
unsigned char iv :1; // valid/invalid
cp56time2a time;
};
// M_ME_TF_1 - short floating point measurement value and time tag
struct iec_type36 {
float mv;
unsigned char ov :1; // overflow/no overflow
unsigned char res :3;
unsigned char bl :1; // blocked/not blocked
unsigned char sb :1; // substituted/not substituted
unsigned char nt :1; // not topical/topical
unsigned char iv :1; // valid/invalid
cp56time2a time;
};
// M_IT_TB_1
struct iec_type37 {
int bcr;
//int bcr:31;
//int np :1;
unsigned char sq :5;
unsigned char cy :1;
unsigned char ca :1;
unsigned char iv :1;
cp56time2a time;
};
struct iec_type45 {
unsigned char scs :1; // single command state
unsigned char res :1; // must be zero
unsigned char qu :5;
unsigned char se :1; // select=1 / execute=0
};
struct iec_type46 {
unsigned char dcs :2; // double command state
unsigned char qu :5;
unsigned char se :1; // select=1 / execute=0
};
struct iec_type47 {
unsigned char rcs :2; // regulating step command
unsigned char qu :5;
unsigned char se :1; // select=1 / execute=0
};
struct iec_type58 {
unsigned char scs :1; // single command state
unsigned char res :1; // must be zero
unsigned char qu :5;
unsigned char se :1; // select=1 / execute=0
cp56time2a time;
};
struct iec_type59 {
unsigned char dcs :2; // double command state
unsigned char qu :5;
unsigned char se :1; // select=1 / execute=0
cp56time2a time;
};
struct iec_type60 {
unsigned char rcs :2; // regulating step command
unsigned char qu :5;
unsigned char se :1; // select=1 / execute=0
cp56time2a time;
};
struct iec_type100 {
unsigned char qoi; // pointer of interrogation
};
struct iec_type101 {
unsigned char rqt :6; // request
unsigned char frz :2; // freeze
};
struct iec_type103 {
cp56time2a time;
};
struct iec_type107 {
unsigned short ioa16; // object address bytes 1,2
unsigned char ioa8; // object address byte 3
unsigned short tsc; // TSC test sequence counter
cp56time2a time;
};
// Data unit identifier block - ASDU header
struct iec_unit_id {
unsigned char type; // type identification
unsigned char num :7; // number of information objects
unsigned char sq :1; // sequenced/not sequenced address
unsigned char cause :6; // cause of transmission
unsigned char pn :1; // positive/negative app. confirmation
unsigned char t :1; // test
unsigned char oa; // originator addres
unsigned short ca; // common address of ASDU
};
struct iec_apdu {
unsigned char start;
unsigned char length;
unsigned short NS;
unsigned short NR;
struct iec_unit_id asduh;
union {
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type1 obj[1];
} sq1;
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type1 obj;
} nsq1[1];
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type3 obj[1];
} sq3;
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type3 obj;
} nsq3[1];
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type5 obj[1];
} sq5;
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type5 obj;
} nsq5[1];
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type9 obj[1];
} sq9;
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type9 obj;
} nsq9[1];
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type11 obj[1];
} sq11;
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type11 obj;
} nsq11[1];
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type13 obj[1];
} sq13;
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type13 obj;
} nsq13[1];
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type15 obj;
} nsq15[1];
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type15 obj[1];
} sq15;
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type21 obj;
} nsq21[1];
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type21 obj[1];
} sq21;
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type30 obj[1];
} sq30;
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type30 obj;
} nsq30[1];
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type31 obj[1];
} sq31;
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type31 obj;
} nsq31[1];
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type32 obj[1];
} sq32;
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type32 obj;
} nsq32[1];
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type34 obj[1];
} sq34;
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type34 obj;
} nsq34[1];
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type35 obj[1];
} sq35;
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type35 obj;
} nsq35[1];
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type36 obj[1];
} sq36;
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type36 obj;
} nsq36[1];
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type37 obj[1];
} sq37;
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type37 obj;
} nsq37[1];
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type45 obj;
} nsq45;
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type46 obj;
} nsq46;
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type47 obj;
} nsq47;
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type58 obj;
} nsq58;
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type59 obj;
} nsq59;
struct {
unsigned short ioa16;
unsigned char ioa8;
iec_type60 obj;
} nsq60;
unsigned char dados[255];
iec_type107 asdu107;
};
};
#pragma pack(pop)
#endif // __IEC104_TYPES_H