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 114942c commit 01a118eCopy full SHA for 01a118e
command/device/provision.go
@@ -61,7 +61,10 @@ func (p provision) run() error {
61
return err
62
}
63
defer p.ser.Close()
64
- logrus.Infof("%s\n\n", "Connected to board")
+
65
+ // Wait some time before using the serial port
66
+ time.Sleep(500 * time.Millisecond)
67
+ logrus.Infof("%s\n\n", "Connected to the board")
68
69
// Send configuration commands to the board
70
err = p.configBoard()
0 commit comments