1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:12:57 +01:00

stm32f723e-disco: remove obsolete spi_divtable

This commit is contained in:
Koen Zandberg 2020-08-18 13:42:49 +02:00
parent dc890c4505
commit 1fe7f3d028
No known key found for this signature in database
GPG Key ID: 0895A893E6D2985B

View File

@ -182,28 +182,8 @@ static const i2c_conf_t i2c_config[] = {
/**
* @name SPI configuration
*
* @note The spi_divtable is auto-generated from
* `cpu/stm32_common/dist/spi_divtable/spi_divtable.c`
* @{
*/
static const uint8_t spi_divtable[2][5] = {
{ /* for APB1 @ 54000000Hz */
7, /* -> 210937Hz */
6, /* -> 421875Hz */
5, /* -> 843750Hz */
3, /* -> 3375000Hz */
2 /* -> 6750000Hz */
},
{ /* for APB2 @ 108000000Hz */
7, /* -> 421875Hz */
7, /* -> 421875Hz */
6, /* -> 843750Hz */
4, /* -> 3375000Hz */
3 /* -> 6750000Hz */
}
};
static const spi_conf_t spi_config[] = {
{ /* Arduino connector */
.dev = SPI1,