Fix SKR E3 board BLTOUCH + SPEAKER timer conflict (#15781)

This commit is contained in:
Miroslav Šustek
2019-11-07 00:34:29 +01:00
committed by Scott Lahteine
parent 814a2eaf8f
commit 9201197878
3 changed files with 21 additions and 3 deletions

View File

@@ -53,7 +53,7 @@ static const spi_pins* dev_to_spi_pins(spi_dev *dev);
static void configure_gpios(spi_dev *dev, bool as_master);
static spi_baud_rate determine_baud_rate(spi_dev *dev, uint32_t freq);
#if (BOARD_NR_SPI >= 3) && !defined(STM32_HIGH_DENSITY)
#if BOARD_NR_SPI >= 3 && !defined(STM32_HIGH_DENSITY)
#error "The SPI library is misconfigured: 3 SPI ports only available on high density STM32 devices"
#endif