diff options
author | Ayke van Laethem <[email protected]> | 2022-02-13 17:04:36 +0100 |
---|---|---|
committer | Ron Evans <[email protected]> | 2022-02-18 23:39:26 +0100 |
commit | 644356c220ed88f110d01300f671a170cd36eb04 (patch) | |
tree | 7e13c4a4ca0576c71809c6d6df075d3848fb0d9a /src/machine/machine_stm32l5.go | |
parent | 47a622a903ac1f9341ea31b623302b101aee9c01 (diff) | |
download | tinygo-644356c220ed88f110d01300f671a170cd36eb04.tar.gz tinygo-644356c220ed88f110d01300f671a170cd36eb04.zip |
all: move stm32 files to separate repository
Diffstat (limited to 'src/machine/machine_stm32l5.go')
-rw-r--r-- | src/machine/machine_stm32l5.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/machine/machine_stm32l5.go b/src/machine/machine_stm32l5.go index 5eb951d83..c077b960d 100644 --- a/src/machine/machine_stm32l5.go +++ b/src/machine/machine_stm32l5.go @@ -6,9 +6,9 @@ package machine // Peripheral abstraction layer for the stm32l5 import ( - "device/stm32" "runtime/interrupt" "runtime/volatile" + "tinygo.org/x/device/stm32" "unsafe" ) |