forked from wendy512/iec61850
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfc.go
More file actions
43 lines (40 loc) · 649 Bytes
/
Copy pathfc.go
File metadata and controls
43 lines (40 loc) · 649 Bytes
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
package iec61850
// #include <iec61850_client.h>
import "C"
type FC int
// fc types
const (
// ST Status information
ST FC = iota
// MX Measurands - analogue values
MX
// SP Setpoint
SP
// SV Substitution
SV
// CF Configuration
CF
// DC Description
DC
// SG Setting group
SG
// SE Setting group editable
SE
// SR service response / service tracking
SR
// OR Operate received
OR
// BL Blocking
BL
// EX Extended definition
EX
// CO Control, deprecated but kept here for backward compatibility
CO
// RP Unbuffered Reporting
RP
// BR Buffered Reporting
BR
// ALL All FCs - wildcard value
ALL FC = 99
NONE FC = -1
)