-
Notifications
You must be signed in to change notification settings - Fork 13.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
boards/arm/stm32/nucleo-f429zi: Port Nuttx to Nucleo-F429zi (#752)
* boards/arm/stm32/nucleo-f429zi: Initial port to nucleo-f429zi board. * boards/arm/stm32/nucleo-f429zi: Add two demo configs. * Add the nucleo-f429zi to boards/Kconfig boards/Kcondig: Fixed line alignment issue. * boards/arm/stm32/nucleo-f429zi: Change the license header of all new files to an Apache 2.0 license. * boards/arm/stm32/nucleo-f429zi: nxstyle fixed
- Loading branch information
Showing
29 changed files
with
4,716 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# | ||
# For a description of the syntax of this configuration file, | ||
# see the file kconfig-language.txt in the NuttX tools repository. | ||
# | ||
|
||
if ARCH_BOARD_NUCLEO_F429ZI | ||
|
||
choice | ||
prompt "Select Console wiring." | ||
default NUCLEO_F429ZI_CONSOLE_ARDUINO | ||
---help--- | ||
Select where you will connect the console. | ||
|
||
Virtual COM Port: | ||
|
||
Advantage: Use the ST-Link as a console. No Extra wiring | ||
needed. | ||
|
||
Disadvantage: Not the best choice for initial bring up. | ||
|
||
ARDUINO Connector: | ||
|
||
Advantage: You have a shield so it is easy. | ||
|
||
Disadvantage: You loose the use of the | ||
other functions on PC6, PC7 | ||
|
||
STM32F4 | ||
ARDUIONO FUNCTION GPIO | ||
-- ----- --------- ---- | ||
DO RX USART6_RX PG9 | ||
D1 TX USART6_TX PG14 | ||
-- ----- --------- --- | ||
|
||
config NUCLEO_F429ZI_CONSOLE_ARDUINO | ||
bool "Arduino Connector" | ||
select STM32_USART6 | ||
select USART6_SERIALDRIVER | ||
select USART6_SERIAL_CONSOLE | ||
|
||
config NUCLEO_F429ZI_CONSOLE_VIRTUAL | ||
bool "Virtual Comport" | ||
select STM32_USART3 | ||
select USART3_SERIALDRIVER | ||
select USART3_SERIAL_CONSOLE | ||
|
||
config NUCLEO_F429ZI_CONSOLE_NONE | ||
bool "No Console" | ||
|
||
endchoice # "Select Console wiring" | ||
|
||
endif # ARCH_BOARD_NUCLEO_144 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
# | ||
# This file is autogenerated: PLEASE DO NOT EDIT IT. | ||
# | ||
# You can use "make menuconfig" to make any modifications to the installed .config file. | ||
# You can then do "make savedefconfig" to generate a new defconfig file that includes your | ||
# modifications. | ||
# | ||
# CONFIG_ARCH_FPU is not set | ||
# CONFIG_STM32_FLASH_PREFETCH is not set | ||
CONFIG_ARCH="arm" | ||
CONFIG_ARCH_BOARD="nucleo-f429zi" | ||
CONFIG_ARCH_BOARD_NUCLEO_F429ZI=y | ||
CONFIG_ARCH_BUTTONS=y | ||
CONFIG_ARCH_CHIP="stm32" | ||
CONFIG_ARCH_CHIP_STM32=y | ||
CONFIG_ARCH_CHIP_STM32F429Z=y | ||
CONFIG_ARCH_STACKDUMP=y | ||
CONFIG_BOARD_LOOPSPERMSEC=16717 | ||
CONFIG_BUILTIN=y | ||
CONFIG_DEBUG_SYMBOLS=y | ||
CONFIG_ETH0_PHY_LAN8742A=y | ||
CONFIG_FS_PROCFS=y | ||
CONFIG_FS_PROCFS_REGISTER=y | ||
CONFIG_FS_TMPFS=y | ||
CONFIG_HAVE_CXX=y | ||
CONFIG_HAVE_CXXINITIALIZE=y | ||
CONFIG_HEAP2_BASE=0xD0000000 | ||
CONFIG_HEAP2_SIZE=8388608 | ||
CONFIG_INTELHEX_BINARY=y | ||
CONFIG_MAX_TASKS=16 | ||
CONFIG_MAX_WDOGPARMS=2 | ||
CONFIG_MM_REGIONS=2 | ||
CONFIG_NET=y | ||
CONFIG_NETDB_DNSCLIENT=y | ||
CONFIG_NETUTILS_DISCOVER=y | ||
CONFIG_NETUTILS_WEBCLIENT=y | ||
CONFIG_NET_ARP_IPIN=y | ||
CONFIG_NET_ARP_SEND=y | ||
CONFIG_NET_BROADCAST=y | ||
CONFIG_NET_ETH_PKTSIZE=1500 | ||
CONFIG_NET_ICMP=y | ||
CONFIG_NET_ICMP_SOCKET=y | ||
CONFIG_NET_IGMP=y | ||
CONFIG_NET_LOOPBACK=y | ||
CONFIG_NET_ROUTE=y | ||
CONFIG_NET_STATISTICS=y | ||
CONFIG_NET_TCP=y | ||
CONFIG_NET_UDP=y | ||
CONFIG_NET_UDP_CHECKSUMS=y | ||
CONFIG_NFILE_DESCRIPTORS=8 | ||
CONFIG_NFILE_STREAMS=8 | ||
CONFIG_NSH_BUILTIN_APPS=y | ||
CONFIG_NSH_FILEIOSIZE=512 | ||
CONFIG_NSH_LINELEN=64 | ||
CONFIG_NSH_READLINE=y | ||
CONFIG_PREALLOC_MQ_MSGS=4 | ||
CONFIG_PREALLOC_TIMERS=4 | ||
CONFIG_PREALLOC_WDOGS=4 | ||
CONFIG_RAM_SIZE=114688 | ||
CONFIG_RAM_START=0x20000000 | ||
CONFIG_RAW_BINARY=y | ||
CONFIG_RR_INTERVAL=200 | ||
CONFIG_SCHED_WAITPID=y | ||
CONFIG_SCHED_HPWORK=y | ||
CONFIG_SCHED_LPWORK=y | ||
CONFIG_SDCLONE_DISABLE=y | ||
CONFIG_SPI=y | ||
CONFIG_START_DAY=6 | ||
CONFIG_START_MONTH=12 | ||
CONFIG_START_YEAR=2011 | ||
CONFIG_STM32_DISABLE_IDLE_SLEEP_DURING_DEBUG=y | ||
CONFIG_NUCLEO_F429ZI_CONSOLE_VIRTUAL=y | ||
CONFIG_STM32_ETHMAC=y | ||
CONFIG_STM32_RMII_EXTCLK=y | ||
CONFIG_STM32_PHYADDR=0 | ||
CONFIG_STM32_PHYSR=31 | ||
CONFIG_STM32_PHYSR_100FD=0x0018 | ||
CONFIG_STM32_PHYSR_100HD=0x0008 | ||
CONFIG_STM32_PHYSR_10FD=0x0014 | ||
CONFIG_STM32_PHYSR_10HD=0x0004 | ||
CONFIG_STM32_PHYSR_ALTCONFIG=y | ||
CONFIG_STM32_PHYSR_ALTMODE=0x001c | ||
CONFIG_SYSTEM_DHCPC_RENEW=y | ||
CONFIG_SYSTEM_NSH=y | ||
CONFIG_SYSTEM_PING=y | ||
CONFIG_SYSTEM_NSH_CXXINITIALIZE=y | ||
CONFIG_TASK_NAME_SIZE=0 | ||
CONFIG_USART3_SERIAL_CONSOLE=y | ||
CONFIG_USER_ENTRYPOINT="nsh_main" | ||
CONFIG_WDOG_INTRESERVE=0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# | ||
# This file is autogenerated: PLEASE DO NOT EDIT IT. | ||
# | ||
# You can use "make menuconfig" to make any modifications to the installed .config file. | ||
# You can then do "make savedefconfig" to generate a new defconfig file that includes your | ||
# modifications. | ||
# | ||
# CONFIG_ARCH_FPU is not set | ||
# CONFIG_STM32_FLASH_PREFETCH is not set | ||
CONFIG_ARCH="arm" | ||
CONFIG_ARCH_BOARD="nucleo-f429zi" | ||
CONFIG_ARCH_BOARD_NUCLEO_F429ZI=y | ||
CONFIG_ARCH_BUTTONS=y | ||
CONFIG_ARCH_CHIP="stm32" | ||
CONFIG_ARCH_CHIP_STM32=y | ||
CONFIG_ARCH_CHIP_STM32F429Z=y | ||
CONFIG_ARCH_STACKDUMP=y | ||
CONFIG_BOARD_LOOPSPERMSEC=16717 | ||
CONFIG_BUILTIN=y | ||
CONFIG_DEBUG_SYMBOLS=y | ||
CONFIG_FS_PROCFS=y | ||
CONFIG_HAVE_CXX=y | ||
CONFIG_HAVE_CXXINITIALIZE=y | ||
CONFIG_HEAP2_BASE=0xD0000000 | ||
CONFIG_HEAP2_SIZE=8388608 | ||
CONFIG_INTELHEX_BINARY=y | ||
CONFIG_MAX_TASKS=16 | ||
CONFIG_MAX_WDOGPARMS=2 | ||
CONFIG_MM_REGIONS=3 | ||
CONFIG_NFILE_DESCRIPTORS=8 | ||
CONFIG_NFILE_STREAMS=8 | ||
CONFIG_NSH_BUILTIN_APPS=y | ||
CONFIG_NSH_FILEIOSIZE=512 | ||
CONFIG_NSH_LINELEN=64 | ||
CONFIG_NSH_READLINE=y | ||
CONFIG_PREALLOC_MQ_MSGS=4 | ||
CONFIG_PREALLOC_TIMERS=4 | ||
CONFIG_PREALLOC_WDOGS=4 | ||
CONFIG_RAM_SIZE=114688 | ||
CONFIG_RAM_START=0x20000000 | ||
CONFIG_RAW_BINARY=y | ||
CONFIG_RR_INTERVAL=200 | ||
CONFIG_SCHED_WAITPID=y | ||
CONFIG_SDCLONE_DISABLE=y | ||
CONFIG_SPI=y | ||
CONFIG_START_DAY=6 | ||
CONFIG_START_MONTH=12 | ||
CONFIG_START_YEAR=2011 | ||
CONFIG_STM32_DISABLE_IDLE_SLEEP_DURING_DEBUG=y | ||
CONFIG_STM32_EXTERNAL_RAM=y | ||
CONFIG_STM32_FMC=y | ||
CONFIG_STM32_JTAG_SW_ENABLE=y | ||
CONFIG_STM32_PWR=y | ||
CONFIG_NUCLEO_F429ZI_CONSOLE_VIRTUAL=y | ||
CONFIG_SYSTEM_NSH=y | ||
CONFIG_SYSTEM_NSH_CXXINITIALIZE=y | ||
CONFIG_TASK_NAME_SIZE=0 | ||
CONFIG_USART3_SERIAL_CONSOLE=y | ||
CONFIG_USER_ENTRYPOINT="nsh_main" | ||
CONFIG_WDOG_INTRESERVE=0 |
Oops, something went wrong.