blob: 0d4e38abb49a5f7573abd6cbfff96b1692a9e854 (
plain)
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
|
#!/usr/bin/env python3
"""
#
# PROFIBUS - Telegram sniffer
#
# Copyright (c) 2016 Michael Buesch <m@bues.ch>
#
# Licensed under the terms of the GNU General Public License version 2,
# or (at your option) any later version.
#
"""
from pyprofibus.phy_serial import *
from pyprofibus.fdl import *
import sys
import getopt
def usage():
print("PROFIBUS bus sniffer")
print("")
print("Usage: profisniff [OPTIONS] DEVICE")
print("")
print("DEVICE is the PHY device /dev/ttySx")
print("")
print("Options:")
print(" -h|--help Show this help.")
def main():
try:
(opts, args) = getopt.getopt(sys.argv[1:],
"h",
[ "help", ])
except getopt.GetoptError as e:
sys.stderr.write(str(e) + "\n")
usage()
return 1
for (o, v) in opts:
if o in ("-h", "--help"):
usage()
return 0
if len(args) != 1:
usage()
return 1
dev = args[0]
try:
phy = CpPhySerial(dev)
xceiv = FdlTransceiver(phy)
xceiv.setRXFilter(None)
except ProfibusError as e:
sys.stderr.write("ERROR: %s\n" % str(e))
return 1
try:
while True:
try:
ok, telegram = xceiv.poll(-1)
if not ok or not telegram:
continue
print(telegram)
except ProfibusError as e:
sys.stderr.write("ERROR: %s\n" % str(e))
except KeyboardInterrupt:
return 0
return 1
if __name__ == "__main__":
sys.exit(main())
|