8000 stm32/boards/PYBD_SFx: Enable CYW43 WLAN driver. · micropython/micropython@62fe47a · GitHub
[go: up one dir, main page]

Skip to content

Commit 62fe47a

Browse files
committed
stm32/boards/PYBD_SFx: Enable CYW43 WLAN driver.
1 parent 8b7409c commit 62fe47a

File tree

5 files changed

+18
-0
lines changed

5 files changed

+18
-0
lines changed

ports/stm32/boards/PYBD_SF2/f722_qspi.ld

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
FLASH_APP .text
88
FLASH_APP .data
99

10+
FLASH_EXT .big_const
11+
1012
RAM .data
1113
RAM .bss
1214
RAM .heap
@@ -43,6 +45,13 @@ ENTRY(Reset_Handler)
4345
/* Define output sections */
4446
SECTIONS
4547
{
48+
.text_ext :
49+
{
50+
. = ALIGN(512);
51+
*(.big_const*)
52+
. = ALIGN(4);
53+
} >FLASH_EXT
54+
4655
.isr_vector :
4756
{
4857
. = ALIGN(4);

ports/stm32/boards/PYBD_SF2/mpconfigboard.mk

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ MICROPY_FLOAT_IMPL = single
55
AF_FILE = boards/stm32f722_af.csv
66
LD_FILES = boards/PYBD_SF2/f722_qspi.ld
77
TEXT0_ADDR = 0x08008000
8+
TEXT1_ADDR = 0x90000000
9+
TEXT0_SECTIONS = .isr_vector .text .data
10+
TEXT1_SECTIONS = .text_ext
811

912
# MicroPython settings
1013
MICROPY_PY_LWIP = 1
14+
MICROPY_PY_NETWORK_CYW43 = 1

ports/stm32/boards/PYBD_SF3/mpconfigboard.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ TEXT1_SECTIONS = .text_ext
1111

1212
# MicroPython settings
1313
MICROPY_PY_LWIP = 1
14+
MICROPY_PY_NETWORK_CYW43 = 1

ports/stm32/boards/PYBD_SF6/f767.ld

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
FLASH_APP .isr_vector
77
FLASH_APP .text
8+
FLASH_APP .big_const
89
FLASH_APP .data
910

1011
RAM .data
@@ -55,6 +56,8 @@ SECTIONS
5556
. = ALIGN(4);
5657
*(.text*)
5758
*(.rodata*)
59+
. = ALIGN(512);
60+
*(.big_const*)
5861
. = ALIGN(4);
5962
_etext = .;
6063
} >FLASH_APP

ports/stm32/boards/PYBD_SF6/mpconfigboard.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ TEXT0_ADDR = 0x08008000
88

99
# MicroPython settings
1010
MICROPY_PY_LWIP = 1
11+
MICROPY_PY_NETWORK_CYW43 = 1

0 commit comments

Comments
 (0)
0