diff options
author | Olivier Fauchon <[email protected]> | 2021-12-09 00:22:09 +0100 |
---|---|---|
committer | Ron Evans <[email protected]> | 2021-12-13 16:02:00 +0100 |
commit | 93ac7cec0d131e651dcfd79e3d068f6f50d2af89 (patch) | |
tree | 2d399055636bab6645234f30914df9edf6bc69f0 /src/crypto | |
parent | b4503c1e372f3a1eb4fc429a17ef5b0e102b6d42 (diff) | |
download | tinygo-93ac7cec0d131e651dcfd79e3d068f6f50d2af89.tar.gz tinygo-93ac7cec0d131e651dcfd79e3d068f6f50d2af89.zip |
stm32/stm32wlx: Add support for stm32wl55_cm4
board/stm32: Add support for GNSE (Generic Node Sensor Edition)
Thanks to @jamestait for his help on GNSE port
Diffstat (limited to 'src/crypto')
-rw-r--r-- | src/crypto/rand/rand_baremetal.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crypto/rand/rand_baremetal.go b/src/crypto/rand/rand_baremetal.go index 3fe4cae7f..b5f8bc211 100644 --- a/src/crypto/rand/rand_baremetal.go +++ b/src/crypto/rand/rand_baremetal.go @@ -1,5 +1,5 @@ -//go:build stm32wle5 -// +build stm32wle5 +//go:build stm32wlx +// +build stm32wlx package rand |