1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #13414 from benpicco/boards/same54-xpro/peripheral-clocks

boards/same54-xpro: don't source peripheral clocks from main clock
This commit is contained in:
benpicco 2020-02-21 23:25:22 +01:00 committed by GitHub
commit 261ede7b79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -86,7 +86,7 @@ static const uart_conf_t uart_config[] = {
.rx_pad = UART_PAD_RX_1,
.tx_pad = UART_PAD_TX_0,
.flags = UART_FLAG_NONE,
.gclk_src = SAM0_GCLK_MAIN,
.gclk_src = SAM0_GCLK_48MHZ,
}
};
@ -112,7 +112,7 @@ static const spi_conf_t spi_config[] = {
.clk_mux = GPIO_MUX_C,
.miso_pad = SPI_PAD_MISO_3,
.mosi_pad = SPI_PAD_MOSI_0_SCK_1,
.gclk_src = SAM0_GCLK_MAIN,
.gclk_src = SAM0_GCLK_48MHZ,
}
};