From 1fef577bb7b78dcb9ef448befa1fa08d7a935181 Mon Sep 17 00:00:00 2001 From: "koom.nong" Date: Tue, 16 Jan 2024 09:48:45 +0800 Subject: [PATCH 1/5] =?UTF-8?q?fix=20(VfsLfs1):=20ECX00M=E7=B3=BB=E5=88=97?= =?UTF-8?q?=E5=BB=BA=E8=AE=AE=E5=AE=A2=E6=88=B7nor=5Fflash=E4=B8=8D?= =?UTF-8?q?=E4=BD=BF=E7=94=A8clk3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. clk3对应的是最高的50M频率,原厂说对实际电路要求高,open和硬件对外建议使用25M,同步他们的决定。 固件版本: ECX00M 是否需要文案翻译: 是 --- docs/API_reference/zh/stdlib/uos.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/API_reference/zh/stdlib/uos.md b/docs/API_reference/zh/stdlib/uos.md index d0eba04f..985e0aa2 100644 --- a/docs/API_reference/zh/stdlib/uos.md +++ b/docs/API_reference/zh/stdlib/uos.md @@ -493,7 +493,7 @@ udev.set_callback(call_back) ## 注册存储设备 - SPI NOR FLASH -> 目前仅ECx00N&EG91xN&ECx00M&EG810M&ECx00U&EG91xU系列平台支持。且只支持4线spi nor flash。 +> 目前仅ECx00N&EG91xN&ECx00M&EG810M&ECx00U&EG91xU系列平台支持。且只支持4线spi nor flash。ECX00M不建议使用spi_clk = 3。 ### `uos.VfsLfs1` -- Gitee From d94886ccb5bfbc46895b706574c56d4b88dd31c3 Mon Sep 17 00:00:00 2001 From: "koom.nong" Date: Mon, 22 Jan 2024 15:29:26 +0800 Subject: [PATCH 2/5] =?UTF-8?q?=20():=20SPI=5FCLK?= =?UTF-8?q?=E9=A2=91=E7=8E=87=E4=B8=BA3=E6=97=B6=E6=8C=82=E8=BD=BDFlash?= =?UTF-8?q?=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit open和硬件均说8910的nor_flash速度到不了50M,都对外使用25M,同步 固件版本: EG915UCNACR03A01M08_OCPU_QPY 是否需要文案翻译: 是 --- docs/API_reference/en/stdlib/uos.md | 2 +- docs/API_reference/zh/stdlib/uos.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/API_reference/en/stdlib/uos.md b/docs/API_reference/en/stdlib/uos.md index 806adaf6..e4db3f98 100644 --- a/docs/API_reference/en/stdlib/uos.md +++ b/docs/API_reference/en/stdlib/uos.md @@ -492,7 +492,7 @@ udev.set_callback(call_back) uos.VfsLfs1(readsize,progsize,lookahead,pname,spi_port,spi_clk) ``` -Communicates with the external NOR FLASH through SPI. The storage device is mounted as the littleFS file system through SPI. +Communicates with the external NOR FLASH through SPI. The storage device is mounted as the littleFS file system through SPI.ECX00M spi clk = 3 is not recommended. **Parameter** diff --git a/docs/API_reference/zh/stdlib/uos.md b/docs/API_reference/zh/stdlib/uos.md index 985e0aa2..8fa0a70b 100644 --- a/docs/API_reference/zh/stdlib/uos.md +++ b/docs/API_reference/zh/stdlib/uos.md @@ -493,7 +493,7 @@ udev.set_callback(call_back) ## 注册存储设备 - SPI NOR FLASH -> 目前仅ECx00N&EG91xN&ECx00M&EG810M&ECx00U&EG91xU系列平台支持。且只支持4线spi nor flash。ECX00M不建议使用spi_clk = 3。 +> 目前仅ECx00N&EG91xN&ECx00M&EG810M&ECx00U&EG91xU系列平台支持。且只支持4线spi nor flash。ECX00M不建议使用spi_clk = 3。 ### `uos.VfsLfs1` -- Gitee From 010703578a7c6f5429cca89200df80ea18464d9d Mon Sep 17 00:00:00 2001 From: koom <9033230+nong-kangping@user.noreply.gitee.com> Date: Mon, 22 Jan 2024 07:42:06 +0000 Subject: [PATCH 3/5] update docs/API_reference/en/stdlib/uos.md. Signed-off-by: koom <> --- docs/API_reference/en/stdlib/uos.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/API_reference/en/stdlib/uos.md b/docs/API_reference/en/stdlib/uos.md index e4db3f98..515ac61e 100644 --- a/docs/API_reference/en/stdlib/uos.md +++ b/docs/API_reference/en/stdlib/uos.md @@ -492,7 +492,7 @@ udev.set_callback(call_back) uos.VfsLfs1(readsize,progsize,lookahead,pname,spi_port,spi_clk) ``` -Communicates with the external NOR FLASH through SPI. The storage device is mounted as the littleFS file system through SPI.ECX00M spi clk = 3 is not recommended. +Communicates with the external NOR FLASH through SPI. The storage device is mounted as the littleFS file system through SPI. ECX00M spi clk = 3 is not recommended. **Parameter** -- Gitee From 9c86e2d2fc1317422d66422ca880e5f7f685ca04 Mon Sep 17 00:00:00 2001 From: koom <9033230+nong-kangping@user.noreply.gitee.com> Date: Thu, 25 Jan 2024 05:47:42 +0000 Subject: [PATCH 4/5] update docs/API_reference/zh/stdlib/uos.md. Signed-off-by: koom <> --- docs/API_reference/zh/stdlib/uos.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/API_reference/zh/stdlib/uos.md b/docs/API_reference/zh/stdlib/uos.md index 8fa0a70b..864f5f2d 100644 --- a/docs/API_reference/zh/stdlib/uos.md +++ b/docs/API_reference/zh/stdlib/uos.md @@ -493,7 +493,7 @@ udev.set_callback(call_back) ## 注册存储设备 - SPI NOR FLASH -> 目前仅ECx00N&EG91xN&ECx00M&EG810M&ECx00U&EG91xU系列平台支持。且只支持4线spi nor flash。ECX00M不建议使用spi_clk = 3。 +> 目前仅ECx00N&EG91xN&ECx00M&EG810M&ECx00U&EG91xU系列平台支持。且只支持4线spi nor flash。ECx00U&EG91xU不建议使用spi_clk = 3。 ### `uos.VfsLfs1` -- Gitee From b6f238b2afc48620c7a184a94d087160a15250d4 Mon Sep 17 00:00:00 2001 From: koom <9033230+nong-kangping@user.noreply.gitee.com> Date: Thu, 25 Jan 2024 05:50:30 +0000 Subject: [PATCH 5/5] update docs/API_reference/en/stdlib/uos.md. Signed-off-by: koom <> --- docs/API_reference/en/stdlib/uos.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/API_reference/en/stdlib/uos.md b/docs/API_reference/en/stdlib/uos.md index 515ac61e..44bd539c 100644 --- a/docs/API_reference/en/stdlib/uos.md +++ b/docs/API_reference/en/stdlib/uos.md @@ -492,7 +492,7 @@ udev.set_callback(call_back) uos.VfsLfs1(readsize,progsize,lookahead,pname,spi_port,spi_clk) ``` -Communicates with the external NOR FLASH through SPI. The storage device is mounted as the littleFS file system through SPI. ECX00M spi clk = 3 is not recommended. +Communicates with the external NOR FLASH through SPI. The storage device is mounted as the littleFS file system through SPI. ECx00U&EG91xU spi clk = 3 is not recommended. **Parameter** -- Gitee