Skip to content

Commit f28d190

Browse files
committed
Add RNG to list of peripherals to be created
1 parent 66c1944 commit f28d190

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

esp-hal-common/src/peripherals/esp32.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ mod peripherals {
5454
crate::create_peripherals! {
5555
I2C0,
5656
I2C1,
57+
RNG,
5758
SPI0,
5859
SPI1,
5960
SPI2,

esp-hal-common/src/peripherals/esp32c2.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ mod peripherals {
3535

3636
crate::create_peripherals! {
3737
I2C0,
38+
RNG,
3839
SPI0,
3940
SPI1,
4041
SPI2,

esp-hal-common/src/peripherals/esp32c3.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ mod peripherals {
4646

4747
crate::create_peripherals! {
4848
I2C0,
49+
RNG,
4950
SPI0,
5051
SPI1,
5152
SPI2,

esp-hal-common/src/peripherals/esp32s2.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ mod peripherals {
5252
crate::create_peripherals! {
5353
I2C0,
5454
I2C1,
55+
RNG,
5556
SPI0,
5657
SPI1,
5758
SPI2,

esp-hal-common/src/peripherals/esp32s3.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ mod peripherals {
6363
crate::create_peripherals! {
6464
I2C0,
6565
I2C1,
66+
RNG,
6667
SPI0,
6768
SPI1,
6869
SPI2,

0 commit comments

Comments
 (0)