Skip to content

Commit c1cf1ec

Browse files
authored
Merge pull request #3551 from hathach/readme_fix
Readme fix
2 parents 8b59e62 + b4e92f6 commit c1cf1ec

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

README.rst

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Device Stack
8282

8383
Supports multiple device configurations by dynamically changing USB descriptors, low power functions such like suspend, resume, and remote wakeup. The following device classes are supported:
8484

85-
- Audio Class 2.0 (UAC2)
85+
- Audio Class 1.0/2.0 (UAC1/UAC2)
8686
- Bluetooth Host Controller Interface (BTH HCI)
8787
- Communication Device Class (CDC)
8888
- Device Firmware Update (DFU): DFU mode (WIP) and Runtime
@@ -154,11 +154,9 @@ Supported CPUs
154154
+--------------+-----------------------------+--------+------+-----------+------------------------+--------------------+
155155
| Dialog | DA1469x |||| da146xx | |
156156
+--------------+-----------------------------+--------+------+-----------+------------------------+--------------------+
157-
| Espressif | S2, S3 |||| dwc2 | |
157+
| Espressif | S2, S3, H4 |||| dwc2 | |
158158
| ESP32 +-----------------------------+--------+------+-----------+------------------------+--------------------+
159159
| | P4 |||| dwc2 | |
160-
| +-----------------------------+--------+------+-----------+------------------------+--------------------+
161-
| | H4 |||| dwc2 | |
162160
+--------------+-----------------------------+--------+------+-----------+------------------------+--------------------+
163161
| GigaDevice | GD32VF103 || || dwc2 | |
164162
+--------------+-----------------------------+--------+------+-----------+------------------------+--------------------+
@@ -206,8 +204,8 @@ Supported CPUs
206204
| | +-------------------+--------+------+-----------+------------------------+--------------------+
207205
| | | 51u |||| lpc_ip3511 | |
208206
| | +-------------------+--------+------+-----------+------------------------+--------------------+
209-
| | | 54 |||| lpc_ip3511, lpc_ip3516 | NRND, read errata |
210-
| | +-------------------+--------+------+-----------+------------------------+-------------------+
207+
| | | 54 |||| lpc_ip3511, lpc_ip3516 | NRND, read errata |
208+
| | +-------------------+--------+------+-----------+------------------------+--------------------+
211209
| | | 55 |||| lpc_ip3511, lpc_ip3516 | |
212210
| +---------+-------------------+--------+------+-----------+------------------------+--------------------+
213211
| | MCX | N9 || || ci_fs, ci_hs, ehci | |

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@ def preprocess_readme():
5252
src = Path(__file__).parent.parent / "README.rst"
5353
tgt = Path(__file__).parent.parent / "README_processed.rst"
5454
if src.exists():
55-
content = src.read_text()
55+
content = src.read_text(encoding='utf-8')
5656
content = re.sub(r"docs/", r"", content)
5757
content = re.sub(r"\.rst\b", r".html", content)
5858
if not content.endswith("\n"):
5959
content += "\n"
60-
tgt.write_text(content)
60+
tgt.write_text(content, encoding='utf-8')
6161

6262
preprocess_readme()

0 commit comments

Comments
 (0)