Configure car and camera at startup

This commit is contained in:
2021-02-16 17:46:10 +01:00
parent 3d81336c9b
commit 0fe45a3c9c
7 changed files with 423 additions and 99 deletions

View File

@ -111,6 +111,10 @@ func (m *MsgPublisher) listenFrame() {
msgChan := m.srcEvents.SubscribeFrame()
for {
msg := <-msgChan
if msg == nil {
// channel closed
break
}
logr.Debugf("new frame %v", msg.Id)
if m.topicFrame == "" {
return