Files
panda-meb/tests/standalone_test.py

36 lines
720 B
Python
Raw Normal View History

2019-09-24 17:50:53 -07:00
#!/usr/bin/env python3
2017-04-18 07:34:56 -07:00
import os
import sys
2017-04-27 12:08:03 -07:00
import struct
2017-04-27 11:32:14 -07:00
import time
sys.path.append(os.path.join(os.path.dirname(os.path.realpath(__file__)), ".."))
from panda import Panda # noqa: E402
2017-04-18 07:34:56 -07:00
if __name__ == "__main__":
p = Panda()
2019-09-24 18:07:05 -07:00
print(p.get_serial())
print(p.health())
2017-05-02 23:25:54 -07:00
t1 = time.time()
for i in range(100):
p.get_serial()
t2 = time.time()
print("100 requests took %.2f ms" % ((t2 - t1) * 1000))
2017-05-02 23:25:54 -07:00
2018-02-14 15:34:42 -08:00
p.set_safety_mode(Panda.SAFETY_ALLOUTPUT)
2017-04-18 07:34:56 -07:00
2017-04-27 12:08:03 -07:00
a = 0
while True:
2017-04-27 11:32:14 -07:00
# flood
msg = b"\xaa" * 4 + struct.pack("I", a)
2017-04-27 12:08:03 -07:00
p.can_send(0xaa, msg, 0)
p.can_send(0xaa, msg, 1)
p.can_send(0xaa, msg, 4)
2017-04-27 11:32:14 -07:00
time.sleep(0.01)
2017-04-28 17:25:37 -07:00
dat = p.can_recv()
if len(dat) > 0:
print(dat)
2017-04-27 12:08:03 -07:00
a += 1