Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions cmd/prologix/vcp/fluke45/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func main() {
}

// Create a new GPIB controller using the aforementioned serial port and
// communicating with the instrument at GPIB address 5.
// communicating with the instrument at GPIB address 10.
gpib, err := prologix.NewController(vcp, 10, true)
if err != nil {
log.Fatalf("NewController error: %s", err)
Expand All @@ -32,8 +32,7 @@ func main() {
}
log.Printf("Using %s", prologixVer)

// Create a new IVI instance of the HP/Agilent/Keysight E3631A DC power
// supply.
// Create a new IVI instance of the Fluke multimeter
dmm, err := fluke45.New(gpib, true)
if err != nil {
log.Fatalf("IVI instrument error: %s", err)
Expand Down