Skip to content

Commit c632885

Browse files
committed
[doc]Fixed the issue of incorrect display of Chinese characters in the Doxygen documentation directory.
1 parent b594a08 commit c632885

4 files changed

Lines changed: 14 additions & 2 deletions

File tree

documentation/6.components/device-driver/platform/platform.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ INIT_PLATFORM → DT nodes → platform devices on bus → match + probe if
5353
INIT_DEVICE → RT_PLATFORM_DRIVER_EXPORT → register driver → probe every unmatched device
5454
```
5555

56-
**Takeaway**: DT devices appear at **`INIT_PLATFORM`**. Drivers using **`RT_PLATFORM_DRIVER_EXPORT`** register later and then bind via **`rt_bus_add_driver` rt_bus_for_each_dev`**. Drivers that must run before the bulk DT scan use **`INIT_SUBSYS_EXPORT`** + manual **`rt_platform_driver_register`**.
56+
**Takeaway**: DT devices appear at **`INIT_PLATFORM`**. Drivers using **`RT_PLATFORM_DRIVER_EXPORT`** register later and then bind via **`rt_bus_add_driver` -> `rt_bus_for_each_dev`**. Drivers that must run before the bulk DT scan use **`INIT_SUBSYS_EXPORT`** + manual **`rt_platform_driver_register`**.
5757

5858
---
5959

documentation/6.components/device-driver/power_domain/power_domain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ regulator enable (if needed)
229229
→ rt_dm_dev_iomap + driver init
230230
```
231231

232-
Power **off** for suspend (if implemented): reverse order per SoC manual often **`idle clocks` reset assertpower_off`**.
232+
Power **off** for suspend (if implemented): reverse order per SoC manual - often **`idle clocks` -> `reset assert` -> `power_off`**.
233233

234234
---
235235

documentation/Doxyfile.1.9.1

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -923,6 +923,12 @@ RECURSIVE = YES
923923

924924
EXCLUDE = ./0.doxygen/mainpage.h \
925925
./2.quick-start/quick_start_qemu \
926+
./3.kernel/smp-startup/README_zh.md \
927+
./6.components/device-driver/clock_time/README_zh.md \
928+
./6.components/device-driver/clock_time/clock_boottime_zh.md \
929+
./6.components/device-driver/clock_time/clock_hrtimer_zh.md \
930+
./6.components/device-driver/clock_time/clock_time_core_zh.md \
931+
./6.components/device-driver/clock_time/clock_timer_zh.md \
926932
./env/env-vscode.md \
927933
./7.contribution/coding_style_cn.md \
928934
../src/utest/perf/README.md

documentation/Doxyfile.1.9.8

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1013,6 +1013,12 @@ RECURSIVE = YES
10131013

10141014
EXCLUDE = ./0.doxygen/mainpage.h \
10151015
./2.quick-start/quick_start_qemu \
1016+
./3.kernel/smp-startup/README_zh.md \
1017+
./6.components/device-driver/clock_time/README_zh.md \
1018+
./6.components/device-driver/clock_time/clock_boottime_zh.md \
1019+
./6.components/device-driver/clock_time/clock_hrtimer_zh.md \
1020+
./6.components/device-driver/clock_time/clock_time_core_zh.md \
1021+
./6.components/device-driver/clock_time/clock_timer_zh.md \
10161022
./env/env-vscode.md \
10171023
./7.contribution/coding_style_cn.md \
10181024
../src/utest/perf/README.md

0 commit comments

Comments
 (0)