We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4c2922 commit b820432Copy full SHA for b820432
docs/code-completion/rtthread.py
@@ -13,3 +13,7 @@ def is_preempt_thread() -> None:
13
def stacks_analyze() -> None:
14
"""返回当前系统线程和栈使用信息。"""
15
...
16
+
17
+def list_device() -> None:
18
+ """列出当前板卡上可使用的设备信息,包括设备名和设备类型。"""
19
+ ...
docs/code-completion/uos.py
@@ -37,3 +37,7 @@ def stat(path : str) -> None:
37
def sync() -> None:
38
"""同步所有的文件系统。"""
39
40
41
+def mkfs(fs_type : str, dev_name : str) -> None:
42
+ """在指定的设备上创建 fs_type 类型的文件系统。example: os.mkfs("elm", "fs")"""
43
0 commit comments