-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy paththingset_old.py
executable file
·48 lines (40 loc) · 1.47 KB
/
thingset_old.py
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
import socket
import sys
import struct
import argparse
from cbor2 import CBORTag, loads
class CANsocket(object):
def __init__(self, interface):
self.s = socket.socket(socket.PF_CAN, socket.SOCK_RAW, socket.CAN_RAW)
self.s.bind((interface,))
def receive(self):
pkg = self.s.recv(64)
can_funcid = pkg[8]
can_status = pkg[9]
can_id, length, data = struct.unpack('<IB3x8s', pkg)
can_id &= socket.CAN_EFF_MASK
return(can_id, can_funcid, can_status, data[:length])
def listen(args):
try:
sock = CANsocket(args.interface)
except OSError as e:
sys.stderr.write("Could not bind to given interface {}\n'".format(args.interface))
sys.exit(e.errno)
print("Start listening on {}..\n".format(args.interface))
while True:
can_id, func_id, status, data = sock.receive()
if status >= 0x80:
print("Error receiving package from ID {}. Error code: {}".format(can_id, hex(status)))
continue
cbor_pkg = loads(data[2:])
print("Message from ID {} -> 0: {}".format(can_id, cbor_pkg))
def parse_if():
parser = argparse.ArgumentParser(description="Listen on CAN interface for messages and decode CBOR to ASCII")
parser.add_argument('interface', type=str, help='interface (eg. vcan0)')
parser.set_defaults(func=listen)
return parser.parse_args()
def main():
args = parse_if()
args.func(args)
if __name__ == '__main__':
main()