stm32/boards/PYBD_SFx: Enable CYW43 WLAN driver.
This commit is contained in:
parent
8b7409c295
commit
62fe47aa3a
|
@ -7,6 +7,8 @@
|
|||
FLASH_APP .text
|
||||
FLASH_APP .data
|
||||
|
||||
FLASH_EXT .big_const
|
||||
|
||||
RAM .data
|
||||
RAM .bss
|
||||
RAM .heap
|
||||
|
@ -43,6 +45,13 @@ ENTRY(Reset_Handler)
|
|||
/* Define output sections */
|
||||
SECTIONS
|
||||
{
|
||||
.text_ext :
|
||||
{
|
||||
. = ALIGN(512);
|
||||
*(.big_const*)
|
||||
. = ALIGN(4);
|
||||
} >FLASH_EXT
|
||||
|
||||
.isr_vector :
|
||||
{
|
||||
. = ALIGN(4);
|
||||
|
|
|
@ -5,6 +5,10 @@ MICROPY_FLOAT_IMPL = single
|
|||
AF_FILE = boards/stm32f722_af.csv
|
||||
LD_FILES = boards/PYBD_SF2/f722_qspi.ld
|
||||
TEXT0_ADDR = 0x08008000
|
||||
TEXT1_ADDR = 0x90000000
|
||||
TEXT0_SECTIONS = .isr_vector .text .data
|
||||
TEXT1_SECTIONS = .text_ext
|
||||
|
||||
# MicroPython settings
|
||||
MICROPY_PY_LWIP = 1
|
||||
MICROPY_PY_NETWORK_CYW43 = 1
|
||||
|
|
|
@ -11,3 +11,4 @@ TEXT1_SECTIONS = .text_ext
|
|||
|
||||
# MicroPython settings
|
||||
MICROPY_PY_LWIP = 1
|
||||
MICROPY_PY_NETWORK_CYW43 = 1
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
|
||||
FLASH_APP .isr_vector
|
||||
FLASH_APP .text
|
||||
FLASH_APP .big_const
|
||||
FLASH_APP .data
|
||||
|
||||
RAM .data
|
||||
|
@ -55,6 +56,8 @@ SECTIONS
|
|||
. = ALIGN(4);
|
||||
*(.text*)
|
||||
*(.rodata*)
|
||||
. = ALIGN(512);
|
||||
*(.big_const*)
|
||||
. = ALIGN(4);
|
||||
_etext = .;
|
||||
} >FLASH_APP
|
||||
|
|
|
@ -8,3 +8,4 @@ TEXT0_ADDR = 0x08008000
|
|||
|
||||
# MicroPython settings
|
||||
MICROPY_PY_LWIP = 1
|
||||
MICROPY_PY_NETWORK_CYW43 = 1
|
||||
|
|
Loading…
Reference in New Issue