Clean-up redundant conditional compilation
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2103 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
fc6df0e4a9
commit
ba2b6a7e5c
@ -237,8 +237,6 @@ STM3210E-EVAL-specific Configuration Options
|
||||
CONFIG_U[S]ARTn_PARTIY - 0=no parity, 1=odd parity, 2=even parity
|
||||
CONFIG_U[S]ARTn_2STOP - Two stop bits
|
||||
|
||||
CONFIG_SPI1_DISABLE - Select to disable support for SPI1
|
||||
CONFIG_SPI2_DISABLE - Select to disable support for SPI2
|
||||
CONFIG_SPI_POLLWAIT - Select to disable interrupt driven SPI support.
|
||||
Poll-waiting is recommended if the interrupt rate would be to
|
||||
high in the interrupt driven case.
|
||||
|
@ -126,8 +126,6 @@ CONFIG_STM32_ADC3=n
|
||||
#
|
||||
# STM32F103Z specific serial device driver settings
|
||||
#
|
||||
# CONFIG_USARTn_DISABLE - select to disable all support for
|
||||
# the UART
|
||||
# CONFIG_USARTn_SERIAL_CONSOLE - selects the USARTn for the
|
||||
# console and ttys0 (default is the USART1).
|
||||
# CONFIG_USARTn_RXBUFSIZE - Characters are buffered as received.
|
||||
@ -139,12 +137,6 @@ CONFIG_STM32_ADC3=n
|
||||
# CONFIG_USARTn_PARTIY - 0=no parity, 1=odd parity, 2=even parity
|
||||
# CONFIG_USARTn_2STOP - Two stop bits
|
||||
#
|
||||
CONFIG_USART1_DISABLE=n
|
||||
CONFIG_USART2_DISABLE=y
|
||||
CONFIG_USART3_DISABLE=y
|
||||
CONFIG_USART4_DISABLE=y
|
||||
CONFIG_USART5_DISABLE=y
|
||||
|
||||
CONFIG_USART1_SERIAL_CONSOLE=y
|
||||
CONFIG_USART2_SERIAL_CONSOLE=n
|
||||
CONFIG_USART3_SERIAL_CONSOLE=n
|
||||
|
@ -54,14 +54,11 @@
|
||||
* expanded).
|
||||
*/
|
||||
|
||||
#if STM32_NSPI == 0
|
||||
# undef CONFIG_SPI1_DISABLE
|
||||
# define CONFIG_SPI1_DISABLE 1
|
||||
# undef CONFIG_SPI2_DISABLE
|
||||
# define CONFIG_SPI2_DISABLE 1
|
||||
#elif STM32_NSPI == 1
|
||||
# undef CONFIG_SPI2_DISABLE
|
||||
# define CONFIG_SPI2_DISABLE 1
|
||||
#if STM32_NSPI < 1
|
||||
# undef CONFIG_STM32_SPI1
|
||||
# undef CONFIG_STM32_SPI2
|
||||
#elif STM32_NSPI < 2
|
||||
# undef CONFIG_STM32_SPI2
|
||||
#endif
|
||||
|
||||
/* STM3210E-EVAL GPIOs **************************************************************/
|
||||
|
@ -76,7 +76,7 @@ void stm32_boardinitialize(void)
|
||||
* stm32_spiinitialize() has been brought into the link.
|
||||
*/
|
||||
|
||||
#if !defined(CONFIG_SPI1_DISABLE) || !defined(CONFIG_SPI2_DISABLE)
|
||||
#if defined(CONFIG_STM32_SPI1) || defined(CONFIG_STM32_SPI2)
|
||||
if (stm32_spiinitialize)
|
||||
{
|
||||
stm32_spiinitialize();
|
||||
|
@ -51,7 +51,7 @@
|
||||
#include "stm32_internal.h"
|
||||
#include "stm3210e-internal.h"
|
||||
|
||||
#if !defined(CONFIG_SPI1_DISABLE) || !defined(CONFIG_SPI2_DISABLE)
|
||||
#if defined(CONFIG_STM32_SPI1) || defined(CONFIG_STM32_SPI2)
|
||||
|
||||
/************************************************************************************
|
||||
* Definitions
|
||||
@ -115,7 +115,7 @@ void weak_function stm32_spiinitialize(void)
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef CONFIG_SPI1_DISABLE
|
||||
#ifdef CONFIG_STM32_SPI1
|
||||
void stm32_spi1select(FAR struct spi_dev_s *dev, enum spi_dev_e devid, boolean selected)
|
||||
{
|
||||
spidbg("devid: %d CS: %s\n", (int)devid, selected ? "assert" : "de-assert");
|
||||
@ -127,7 +127,7 @@ ubyte stm32_spi1status(FAR struct spi_dev_s *dev, enum spi_dev_e devid)
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifndef CONFIG_SPI2_DISABLE
|
||||
#ifdef CONFIG_STM32_SPI2
|
||||
void stm32_spi2select(FAR struct spi_dev_s *dev, enum spi_dev_e devid, boolean selected)
|
||||
{
|
||||
spidbg("devid: %d CS: %s\n", (int)devid, selected ? "assert" : "de-assert");
|
||||
@ -139,4 +139,4 @@ ubyte stm32_spi2status(FAR struct spi_dev_s *dev, enum spi_dev_e devid)
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* !CONFIG_SPI1_DISABLE || !CONFIG_SPI2_DISABLE */
|
||||
#endif /* CONFIG_STM32_SPI1 || CONFIG_STM32_SPI2 */
|
||||
|
Loading…
Reference in New Issue
Block a user