aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/crypto
diff options
context:
space:
mode:
authorKenneth Bell <[email protected]>2021-12-19 17:17:30 +0000
committerRon Evans <[email protected]>2022-01-04 20:27:41 +0100
commit5c3ad004ab893767f47ff788ffb3a20c19ff5aca (patch)
treedc33dfa063f06c4cb73ad97fd94837659d309341 /src/crypto
parent61be9189f12c018f90542cba023c3404e069dca2 (diff)
downloadtinygo-5c3ad004ab893767f47ff788ffb3a20c19ff5aca.tar.gz
tinygo-5c3ad004ab893767f47ff788ffb3a20c19ff5aca.zip
stm32: add more MCUs with h/w RNG
Diffstat (limited to 'src/crypto')
-rw-r--r--src/crypto/rand/rand_baremetal.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crypto/rand/rand_baremetal.go b/src/crypto/rand/rand_baremetal.go
index 7a76498bd..a0ebaf65a 100644
--- a/src/crypto/rand/rand_baremetal.go
+++ b/src/crypto/rand/rand_baremetal.go
@@ -1,5 +1,5 @@
-//go:build stm32wlx || stm32f4 || stm32f7 || stm32l4 || (sam && atsamd51) || (sam && atsame5x)
-// +build stm32wlx stm32f4 stm32f7 stm32l4 sam,atsamd51 sam,atsame5x
+//go:build stm32 || (sam && atsamd51) || (sam && atsame5x)
+// +build stm32 sam,atsamd51 sam,atsame5x
package rand