You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by ha...@apache.org on 2022/09/06 23:34:45 UTC

[incubator-nuttx] branch master updated (54dba40f87 -> 179d64d999)

This is an automated email from the ASF dual-hosted git repository.

hartmannathan pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git


    from 54dba40f87 net/netdev/ioctl: correct the argument length of ioctl MII/PHY
     new 3e16b6c9f1 update conditionals to select stm32h7 spi peripherals
     new 179d64d999 stm32h7: SPI is no more experimental

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 arch/arm/src/stm32h7/Kconfig | 13 +++++--------
 1 file changed, 5 insertions(+), 8 deletions(-)


[incubator-nuttx] 01/02: update conditionals to select stm32h7 spi peripherals

Posted by ha...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

hartmannathan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git

commit 3e16b6c9f168bb26d708dfaef420f61b246facf2
Author: Sebastien Lorquet <se...@lorquet.fr>
AuthorDate: Tue Sep 6 15:38:41 2022 +0200

    update conditionals to select stm32h7 spi peripherals
---
 arch/arm/src/stm32h7/Kconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/src/stm32h7/Kconfig b/arch/arm/src/stm32h7/Kconfig
index 1e1aa4b98d..8854ab0cb8 100644
--- a/arch/arm/src/stm32h7/Kconfig
+++ b/arch/arm/src/stm32h7/Kconfig
@@ -694,12 +694,12 @@ config STM32H7_SPI6
 	select SPI
 	select STM32H7_SPI
 
+endmenu # STM32H7 SPI Selection
+
 config STM32H7_SYSCFG
 	bool "SYSCFG"
 	default y
 
-endmenu # STM32H7 SPI Selection
-
 menu "STM32H7 Timer Selection"
 
 config STM32H7_TIM1


[incubator-nuttx] 02/02: stm32h7: SPI is no more experimental

Posted by ha...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

hartmannathan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git

commit 179d64d99919dd77b1ae43087d82361344e00126
Author: Sebastien Lorquet <se...@lorquet.fr>
AuthorDate: Tue Sep 6 15:39:49 2022 +0200

    stm32h7: SPI is no more experimental
---
 arch/arm/src/stm32h7/Kconfig | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/arch/arm/src/stm32h7/Kconfig b/arch/arm/src/stm32h7/Kconfig
index 8854ab0cb8..d22b2f92e0 100644
--- a/arch/arm/src/stm32h7/Kconfig
+++ b/arch/arm/src/stm32h7/Kconfig
@@ -655,42 +655,39 @@ menu "STM32H7 SPI Selection"
 config STM32H7_SPI1
 	bool "SPI1"
 	default n
-	depends on EXPERIMENTAL
 	select SPI
 	select STM32H7_SPI
 
 config STM32H7_SPI2
 	bool "SPI2"
 	default n
-	depends on EXPERIMENTAL
 	select SPI
 	select STM32H7_SPI
 
 config STM32H7_SPI3
 	bool "SPI3"
 	default n
-	depends on EXPERIMENTAL
 	select SPI
 	select STM32H7_SPI
 
 config STM32H7_SPI4
 	bool "SPI4"
 	default n
-	depends on STM32H7_HAVE_SPI4 && EXPERIMENTAL
+	depends on STM32H7_HAVE_SPI4
 	select SPI
 	select STM32H7_SPI
 
 config STM32H7_SPI5
 	bool "SPI5"
 	default n
-	depends on STM32H7_HAVE_SPI5 && EXPERIMENTAL
+	depends on STM32H7_HAVE_SPI5
 	select SPI
 	select STM32H7_SPI
 
 config STM32H7_SPI6
 	bool "SPI6"
 	default n
-	depends on STM32H7_HAVE_SPI6 && EXPERIMENTAL
+	depends on STM32H7_HAVE_SPI6
 	select SPI
 	select STM32H7_SPI