read arg in read_highstate.py
This commit is contained in:
parent
fa4cbef093
commit
2609e6fd2f
|
@ -15,7 +15,8 @@ def HighStateHandler(msg: SportModeState_):
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
ChannelFactoryInitialize(0, "enp3s0")
|
# sys.argv[1]: name of the network interface
|
||||||
|
ChannelFactoryInitialize(0, sys.argv[1])
|
||||||
sub = ChannelSubscriber("rt/sportmodestate", SportModeState_)
|
sub = ChannelSubscriber("rt/sportmodestate", SportModeState_)
|
||||||
sub.Init(HighStateHandler, 10)
|
sub.Init(HighStateHandler, 10)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue