Skip to content

Commit 03ca82f

Browse files
committed
emb/machine:import 'device/' -> 'github.com/goplus/lib/emb/devive'
1 parent bd28cc8 commit 03ca82f

13 files changed

+13
-13
lines changed

emb/machine/board_hifive1b_baremetal.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
package machine
44

5-
import "device/sifive"
5+
import "github.com/goplus/lib/emb/device/sifive"
66

77
// SPI on the HiFive1.
88
var (

emb/machine/board_maixbit_baremetal.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
package machine
44

5-
import "device/kendryte"
5+
import "github.com/goplus/lib/emb/device/kendryte"
66

77
// SPI on the MAix Bit.
88
var (

emb/machine/machine_atsamd51g19.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// http://ww1.microchip.com/downloads/en/DeviceDoc/60001507C.pdf
77
package machine
88

9-
import "device/sam"
9+
import "github.com/goplus/lib/emb/device/sam"
1010

1111
const HSRAM_SIZE = 0x00030000
1212

emb/machine/machine_atsamd51j19.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// http://ww1.microchip.com/downloads/en/DeviceDoc/SAM_D5xE5x_Family_Data_Sheet_DS60001507F.pdf
77
package machine
88

9-
import "device/sam"
9+
import "github.com/goplus/lib/emb/device/sam"
1010

1111
const HSRAM_SIZE = 0x00030000
1212

emb/machine/machine_atsamd51j20.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// http://ww1.microchip.com/downloads/en/DeviceDoc/60001507C.pdf
77
package machine
88

9-
import "device/sam"
9+
import "github.com/goplus/lib/emb/device/sam"
1010

1111
const HSRAM_SIZE = 0x00040000
1212

emb/machine/machine_atsamd51p19.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// http://ww1.microchip.com/downloads/en/DeviceDoc/60001507C.pdf
77
package machine
88

9-
import "device/sam"
9+
import "github.com/goplus/lib/emb/device/sam"
1010

1111
const HSRAM_SIZE = 0x00030000
1212

emb/machine/machine_atsamd51p20.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// http://ww1.microchip.com/downloads/en/DeviceDoc/60001507C.pdf
77
package machine
88

9-
import "device/sam"
9+
import "github.com/goplus/lib/emb/device/sam"
1010

1111
const HSRAM_SIZE = 0x00040000
1212

emb/machine/machine_atsame51j19.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// http://ww1.microchip.com/downloads/en/DeviceDoc/SAM_D5xE5x_Family_Data_Sheet_DS60001507F.pdf
77
package machine
88

9-
import "device/sam"
9+
import "github.com/goplus/lib/emb/device/sam"
1010

1111
const HSRAM_SIZE = 0x00030000
1212

emb/machine/machine_atsame54p20.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// http://ww1.microchip.com/downloads/en/DeviceDoc/60001507C.pdf
77
package machine
88

9-
import "device/sam"
9+
import "github.com/goplus/lib/emb/device/sam"
1010

1111
const HSRAM_SIZE = 0x00040000
1212

emb/machine/machine_cortexm.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
package machine
44

5-
import "device/arm"
5+
import "github.com/goplus/lib/emb/device/arm"
66

77
// CPUReset performs a hard system reset.
88
func CPUReset() {

0 commit comments

Comments
 (0)