From 4f3e5db8e0424fd0b4e1ff0dade63f9e7cb975f8 Mon Sep 17 00:00:00 2001 From: Paul Philippov Date: Tue, 5 Jul 2022 12:26:39 -0400 Subject: [PATCH] Update help-uboot.md update RAM address --- en/help-uboot.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/en/help-uboot.md b/en/help-uboot.md index 031b65a..eda1058 100644 --- a/en/help-uboot.md +++ b/en/help-uboot.md @@ -44,7 +44,7 @@ For reading whole 8 MB flash memory run mw.b 0x82000000 ff 0x800000 sf probe 0 sf read 0x82000000 0x0 0x800000 -md.b 0x0 0x800000 +md.b 0x82000000 0x800000 ``` and for 16 MB flash memory run @@ -53,7 +53,7 @@ and for 16 MB flash memory run mw.b 0x82000000 ff 0x1000000 sf probe 0 sf read 0x82000000 0x0 0x1000000 -md.b 0x0 0x1000000 +md.b 0x82000000 0x1000000 ``` Since the process of reading is going to take a considerable amount of time