Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Anne Jan Brouwer
micropython
Commits
62fe47aa
Commit
62fe47aa
authored
Jun 01, 2019
by
Damien George
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stm32/boards/PYBD_SFx: Enable CYW43 WLAN driver.
parent
8b7409c2
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
18 additions
and
0 deletions
+18
-0
ports/stm32/boards/PYBD_SF2/f722_qspi.ld
ports/stm32/boards/PYBD_SF2/f722_qspi.ld
+9
-0
ports/stm32/boards/PYBD_SF2/mpconfigboard.mk
ports/stm32/boards/PYBD_SF2/mpconfigboard.mk
+4
-0
ports/stm32/boards/PYBD_SF3/mpconfigboard.mk
ports/stm32/boards/PYBD_SF3/mpconfigboard.mk
+1
-0
ports/stm32/boards/PYBD_SF6/f767.ld
ports/stm32/boards/PYBD_SF6/f767.ld
+3
-0
ports/stm32/boards/PYBD_SF6/mpconfigboard.mk
ports/stm32/boards/PYBD_SF6/mpconfigboard.mk
+1
-0
No files found.
ports/stm32/boards/PYBD_SF2/f722_qspi.ld
View file @
62fe47aa
...
...
@@ -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);
...
...
ports/stm32/boards/PYBD_SF2/mpconfigboard.mk
View file @
62fe47aa
...
...
@@ -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
ports/stm32/boards/PYBD_SF3/mpconfigboard.mk
View file @
62fe47aa
...
...
@@ -11,3 +11,4 @@ TEXT1_SECTIONS = .text_ext
# MicroPython settings
MICROPY_PY_LWIP
=
1
MICROPY_PY_NETWORK_CYW43
=
1
ports/stm32/boards/PYBD_SF6/f767.ld
View file @
62fe47aa
...
...
@@ -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
...
...
ports/stm32/boards/PYBD_SF6/mpconfigboard.mk
View file @
62fe47aa
...
...
@@ -8,3 +8,4 @@ TEXT0_ADDR = 0x08008000
# MicroPython settings
MICROPY_PY_LWIP
=
1
MICROPY_PY_NETWORK_CYW43
=
1
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment