Skip to content

Commit a89e5ed

Browse files
authored
Merge pull request #88 from whj4674672/master
[fix] linker_scripts
2 parents 2604a1c + fae15ea commit a89e5ed

File tree

10 files changed

+25
-16
lines changed

10 files changed

+25
-16
lines changed

documents/UM5001-RT-Thread ART-Pi 快速上手.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,22 @@ ART-Pi 出厂自带一个好玩的例程,可通过蓝牙对开发板进行配
1414

1515
## 运行
1616

17-
**出厂例程的正常运行需要蓝牙固件,WIFI 固件以及网页文件的支持,如果开发板缺少这些文件,则需要参照下方注意事项上传固件及网页**
17+
**开发板上电后请按一下步骤进行配网**
18+
19+
1. **微信** 扫描二维码打开 **WIFI 配网助手**
20+
21+
![wifi-mini-program](./figures/wifi-mini-program.jpg)
22+
23+
2. 设备选择 **ART-Pi**,输入所要连接的 WIFI SSID 和密码,输入完成后点击 **蓝牙配网** 按钮进行配网。
1824

19-
开发板上电后需要蓝牙配网,打开微信 **WIFI 配网助手** 小程序,设备选择 **ART-Pi**,选择所要连接的 WIFI SSID 和密码,输入完成后点击 **蓝牙配网** 按钮进行配网。
2025
![BT](./figures/bt.jpg)
2126

22-
配网成功后小程序会跳出成功页面,并且显示开发板获取到的 IP 地址。
27+
3. 配网成功后小程序会跳出成功页面,并且显示开发板获取到的 IP 地址。
28+
2329
![BT](./figures/bt_success.jpg)
2430

25-
此时点击 **一键复制** 将 IP 地址复制到剪切板并粘贴到浏览器中即可打开开发板主页。
31+
4. 此时点击 **一键复制** 将 IP 地址复制到剪切板并粘贴到浏览器中即可打开开发板主页。
32+
2633
![WEB](./figures/web.gif)
2734

2835
## 注意事项
@@ -31,6 +38,8 @@ ART-Pi 出厂自带一个好玩的例程,可通过蓝牙对开发板进行配
3138

3239
### 固件或网页丢失
3340

41+
**出厂例程的正常运行需要蓝牙固件,WIFI 固件以及网页文件的支持,如果开发板缺少这些文件,则需要参照下方注意事项上传固件及网页**
42+
3443
- 出厂默认刷好了 wifi 和蓝牙固件和网页文件,若固件丢失,可以按照文档 `UM3004-RT-Thread ART-Pi BT_WIFI 模块固件下载手册` 所描述方法重新传入。
3544

3645
- 网页文件存在于 `/projects/art_pi_factory/applications/web_dist` 目录下,不同于 WIFI 及蓝牙固件的上传,网页文件需要联网后通过 **adb** 工具进行上传, 需要将 `webnet` 目录上传到开发板的 `/flash / 目录下 `。具体的使用方法如下:
44.8 KB
Loading

projects/art_pi_blink_led/board/linker_scripts/STM32H750XBHx/link.lds

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/* Program Entry, set to mark it as "used" and avoid gc */
66
MEMORY
77
{
8-
ROM (rx) : ORIGIN =0x90000000,LENGTH =16384k
8+
ROM (rx) : ORIGIN =0x90000000,LENGTH =8192k
99
RAM (rw) : ORIGIN =0x24000000,LENGTH =512k
1010
}
1111
ENTRY(Reset_Handler)

projects/art_pi_blink_led/board/linker_scripts/STM32H750XBHx/link.sct

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
; *** Scatter-Loading Description File generated by uVision ***
33
; *************************************************************
44

5-
LR_IROM1 0x90000000 0x01000000 { ; load region size_region
6-
ER_IROM1 0x90000000 0x01000000 { ; load address = execution address
5+
LR_IROM1 0x90000000 0x00800000 { ; load region size_region
6+
ER_IROM1 0x90000000 0x00800000 { ; load address = execution address
77
*.o (RESET, +First)
88
*(InRoot$$Sections)
99
.ANY (+RO)

projects/art_pi_factory/board/linker_scripts/STM32H750XBHx/link.lds

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/* Program Entry, set to mark it as "used" and avoid gc */
66
MEMORY
77
{
8-
ROM (rx) : ORIGIN =0x90000000,LENGTH =16384k
8+
ROM (rx) : ORIGIN =0x90000000,LENGTH =8192k
99
RAM (rw) : ORIGIN =0x24000000,LENGTH =512k
1010
}
1111
ENTRY(Reset_Handler)

projects/art_pi_factory/board/linker_scripts/STM32H750XBHx/link.sct

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
; *** Scatter-Loading Description File generated by uVision ***
33
; *************************************************************
44

5-
LR_IROM1 0x90000000 0x01000000 { ; load region size_region
6-
ER_IROM1 0x90000000 0x01000000 { ; load address = execution address
5+
LR_IROM1 0x90000000 0x00800000 { ; load region size_region
6+
ER_IROM1 0x90000000 0x00800000 { ; load address = execution address
77
*.o (RESET, +First)
88
*(InRoot$$Sections)
99
.ANY (+RO)

projects/art_pi_wifi/board/linker_scripts/STM32H750XBHx/link.lds

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/* Program Entry, set to mark it as "used" and avoid gc */
66
MEMORY
77
{
8-
ROM (rx) : ORIGIN =0x90000000,LENGTH =16384k
8+
ROM (rx) : ORIGIN =0x90000000,LENGTH =8192k
99
RAM (rw) : ORIGIN =0x24000000,LENGTH =512k
1010
}
1111
ENTRY(Reset_Handler)

projects/art_pi_wifi/board/linker_scripts/STM32H750XBHx/link.sct

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
; *** Scatter-Loading Description File generated by uVision ***
33
; *************************************************************
44

5-
LR_IROM1 0x90000000 0x01000000 { ; load region size_region
6-
ER_IROM1 0x90000000 0x01000000 { ; load address = execution address
5+
LR_IROM1 0x90000000 0x00800000 { ; load region size_region
6+
ER_IROM1 0x90000000 0x00800000 { ; load address = execution address
77
*.o (RESET, +First)
88
*(InRoot$$Sections)
99
.ANY (+RO)

projects/industry_io_gateway/board/linker_scripts/STM32H750XBHx/link.lds

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/* Program Entry, set to mark it as "used" and avoid gc */
66
MEMORY
77
{
8-
ROM (rx) : ORIGIN =0x90000000,LENGTH =16384k
8+
ROM (rx) : ORIGIN =0x90000000,LENGTH =8192k
99
RAM (rw) : ORIGIN =0x24000000,LENGTH =512k
1010
RxDecripSection (rw) : ORIGIN =0x30040000,LENGTH =32k
1111
TxDecripSection (rw) : ORIGIN =0x30040060,LENGTH =32k

projects/industry_io_gateway/board/linker_scripts/STM32H750XBHx/link.sct

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
; *** Scatter-Loading Description File generated by uVision ***
33
; *************************************************************
44

5-
LR_IROM1 0x90000000 0x01000000 { ; load region size_region
6-
ER_IROM1 0x90000000 0x01000000 { ; load address = execution address
5+
LR_IROM1 0x90000000 0x00800000 { ; load region size_region
6+
ER_IROM1 0x90000000 0x00800000 { ; load address = execution address
77
*.o (RESET, +First)
88
*(InRoot$$Sections)
99
.ANY (+RO)

0 commit comments

Comments
 (0)