We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 451db0a commit e0c578aCopy full SHA for e0c578a
command/device/provision.go
@@ -78,7 +78,10 @@ func (p provision) run() error {
78
return err
79
}
80
defer p.ser.Close()
81
- logrus.Infof("%s\n\n", "Connected to board")
+
82
+ // Wait some time before using the serial port
83
+ time.Sleep(500 * time.Millisecond)
84
+ logrus.Infof("%s\n\n", "Connected to the board")
85
86
// Send configuration commands to the board
87
err = p.configBoard()
0 commit comments