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

stm32f0discovery: remove obsolete spi_divtable

This commit is contained in:
Koen Zandberg 2020-08-18 13:40:46 +02:00
parent ca7f50c169
commit f53983e5fa
No known key found for this signature in database
GPG Key ID: 0895A893E6D2985B

View File

@ -128,23 +128,6 @@ static const uart_conf_t uart_config[] = {
* @name SPI configuration
* @{
*/
static const uint8_t spi_divtable[2][5] = {
{ /* for APB1 @ 48000000Hz */
7, /* -> 187500Hz */
6, /* -> 375000Hz */
5, /* -> 750000Hz */
2, /* -> 6000000Hz */
1 /* -> 12000000Hz */
},
{ /* for APB2 @ 48000000Hz */
7, /* -> 187500Hz */
6, /* -> 375000Hz */
5, /* -> 750000Hz */
2, /* -> 6000000Hz */
1 /* -> 12000000Hz */
}
};
static const spi_conf_t spi_config[] = {
{
.dev = SPI1,