Skip to content

Commit

Permalink
Enable use with Modified brutella can lib
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian Petersen committed Jun 11, 2021
1 parent 9285088 commit 3435c23
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion client.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package canopen
import (
"time"

"github.com/brutella/can"
"github.com/FabianPetersen/can"
)

// A Client handles message communication by sending a request
Expand Down
2 changes: 1 addition & 1 deletion client_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package canopen

import (
"github.com/brutella/can"
"github.com/FabianPetersen/can"
"testing"
"time"
)
Expand Down
4 changes: 2 additions & 2 deletions cmd/canopendump.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ package main
import (
"flag"
"fmt"
"github.com/brutella/can"
"github.com/brutella/canopen"
"github.com/FabianPetersen/can"
"github.com/FabianPetersen/canopen"
"log"
"os"
"os/signal"
Expand Down
2 changes: 1 addition & 1 deletion frame.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package canopen

import (
"github.com/brutella/can"
"github.com/FabianPetersen/can"
)

// A Frame represents a CANopen frame.
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/brutella/canopen
module github.com/FabianPetersen/canopen

go 1.15

require github.com/brutella/can v0.0.1
require github.com/FabianPetersen/can v0.0.3
2 changes: 1 addition & 1 deletion producer.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package canopen

import (
"github.com/brutella/can"
"github.com/FabianPetersen/can"
"time"
)

Expand Down
4 changes: 2 additions & 2 deletions sdo/download.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"encoding/binary"
"errors"
"fmt"
"github.com/brutella/can"
"github.com/brutella/canopen"
"github.com/FabianPetersen/can"
"github.com/FabianPetersen/canopen"
"log"
"time"
)
Expand Down
4 changes: 2 additions & 2 deletions sdo/download_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package sdo

import (
"bytes"
"github.com/brutella/can"
"github.com/brutella/canopen"
"github.com/FabianPetersen/can"
"github.com/FabianPetersen/canopen"
"log"
"testing"
)
Expand Down
4 changes: 2 additions & 2 deletions sdo/upload.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"bytes"
"encoding/binary"
"errors"
"github.com/brutella/can"
"github.com/brutella/canopen"
"github.com/FabianPetersen/can"
"github.com/FabianPetersen/canopen"
"log"
"time"
)
Expand Down
4 changes: 2 additions & 2 deletions sdo/upload_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package sdo

import (
"bytes"
"github.com/brutella/can"
"github.com/brutella/canopen"
"github.com/FabianPetersen/can"
"github.com/FabianPetersen/canopen"
"reflect"
"testing"
)
Expand Down

0 comments on commit 3435c23

Please sign in to comment.