Skip to content

Commit f394af8

Browse files
authored
Peri support corrections (#3621)
1 parent 48a5927 commit f394af8

File tree

6 files changed

+21
-8
lines changed

6 files changed

+21
-8
lines changed

esp-hal/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ For help getting started with this HAL, please refer to [The Rust on ESP Book] a
5757
| ASSIST_DEBUG | | ⚒️ | ⚒️ | ⚒️ | ⚒️ | | ⚒️ |
5858
| DAC | ⚒️ | | | | | ⚒️ | |
5959
| DMA | ⚒️ | ⚒️ | ⚒️ | ⚒️ | ⚒️ | ⚒️ | ⚒️ |
60-
| DS | | | ⚒️ | ⚒️ | ⚒️ | ⚒️ | ⚒️ |
60+
| DS | | | | | | | |
6161
| ECC | | ⚒️ | | ⚒️ | ⚒️ | | |
6262
| Ethernet || | | | | | |
6363
| ETM | | | | ⚒️ | ⚒️ | | |
@@ -68,7 +68,7 @@ For help getting started with this HAL, please refer to [The Rust on ESP Book] a
6868
| I2S | ⚒️ | | ⚒️ | ⚒️ | ⚒️ | ⚒️ | ⚒️ |
6969
| Interrupts | ⚒️ | ⚒️ | ⚒️ | ⚒️ | ⚒️ | ⚒️ | ⚒️ |
7070
| IOMUX | ⚒️ | ⚒️ | ⚒️ | ⚒️ | ⚒️ | ⚒️ | ⚒️ |
71-
| Camera interface || | | | | | ⚒️ |
71+
| Camera interface || | | | | | ⚒️ |
7272
| RGB display | ⚒️ | | | | || ⚒️ |
7373
| LEDC | ⚒️ | ⚒️ | ⚒️ | ⚒️ | ⚒️ | ⚒️ | ⚒️ |
7474
| MCPWM | ⚒️ | | | ⚒️ | ⚒️ | | ⚒️ |

esp-metadata/devices/esp32c3.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,13 @@ status = "supported"
9797
[device.uart]
9898
status = "supported"
9999

100+
[device.ds]
101+
status = "not_supported"
102+
100103
# Other drivers which are partially supported but have no other configuration:
101104

102105
## Crypto
103106
[device.aes]
104-
[device.ds]
105107
[device.rsa]
106108
[device.sha]
107109
[device.hmac]

esp-metadata/devices/esp32c6.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,11 +128,13 @@ status = "supported"
128128
[device.uart]
129129
status = "supported"
130130

131+
[device.ds]
132+
status = "not_supported"
133+
131134
# Other drivers which are partially supported but have no other configuration:
132135

133136
## Crypto
134137
[device.aes]
135-
[device.ds]
136138
[device.ecc]
137139
[device.rsa]
138140
[device.sha]

esp-metadata/devices/esp32h2.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,13 @@ status = "supported"
107107
[device.uart]
108108
status = "supported"
109109

110+
[device.ds]
111+
status = "not_supported"
112+
110113
# Other drivers which are partially supported but have no other configuration:
111114

112115
## Crypto
113116
[device.aes]
114-
[device.ds]
115117
[device.ecc]
116118
[device.rsa]
117119
[device.sha]

esp-metadata/devices/esp32s2.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,17 +104,22 @@ status = "supported"
104104
[device.uart]
105105
status = "supported"
106106

107-
[device.rgb_display]
107+
[device.rgb_display] # via SPI and I2S
108+
status = "not_supported"
109+
110+
[device.camera] # via I2S
108111
status = "not_supported"
109112

110113
[device.touch]
111114
status = "not_supported"
112115

116+
[device.ds]
117+
status = "not_supported"
118+
113119
# Other drivers which are partially supported but have no other configuration:
114120

115121
## Crypto
116122
[device.aes]
117-
[device.ds]
118123
[device.rsa]
119124
[device.hmac]
120125
[device.sha]

esp-metadata/devices/esp32s3.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,11 +126,13 @@ status = "supported"
126126
[device.touch]
127127
status = "not_supported"
128128

129+
[device.ds]
130+
status = "not_supported"
131+
129132
# Other drivers which are partially supported but have no other configuration:
130133

131134
## Crypto
132135
[device.aes]
133-
[device.ds]
134136
[device.rsa]
135137
[device.hmac]
136138
[device.sha]

0 commit comments

Comments
 (0)