Skip to content

Commit

Permalink
Fix merge errors
Browse files Browse the repository at this point in the history
  • Loading branch information
zankich committed Nov 21, 2014
1 parent 4c86c0a commit 67e8da6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions platforms/firmata/firmata_adaptor.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ func (f *FirmataAdaptor) Connect() (errs []error) {
if err := f.connect(f); err != nil {
return []error{err}
}
f.board.connect()
f.SetConnected(true)
return
}
Expand Down
2 changes: 1 addition & 1 deletion platforms/opencv/camera_driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func (c *CameraDriver) Start() (errs []error) {
<-time.After(c.Interval())
}
}()
return true
return
}

// Halt stops camera driver
Expand Down

0 comments on commit 67e8da6

Please sign in to comment.