Merge pull request #13481 from kaspar030/fix_pinetime_nor

boards/pinetime: update mtd_spi_nor config
This commit is contained in:
Koen Zandberg 2020-02-26 10:31:54 +01:00 committed by GitHub
commit dde05355c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,6 +29,16 @@
#include "periph/spi.h" #include "periph/spi.h"
#ifdef MODULE_MTD #ifdef MODULE_MTD
static const mtd_spi_nor_params_t _pinetime_nor_params = {
.opcode = &mtd_spi_nor_opcode_default,
.clk = PINETIME_NOR_SPI_CLK,
.flag = PINETIME_NOR_FLAGS,
.spi = PINETIME_NOR_SPI_DEV,
.mode = PINETIME_NOR_SPI_MODE,
.cs = PINETIME_NOR_SPI_CS,
.addr_width = 3,
};
static mtd_spi_nor_t pinetime_nor_dev = { static mtd_spi_nor_t pinetime_nor_dev = {
.base = { .base = {
.driver = &mtd_spi_nor_driver, .driver = &mtd_spi_nor_driver,
@ -36,13 +46,7 @@ static mtd_spi_nor_t pinetime_nor_dev = {
.pages_per_sector = PINETIME_NOR_PAGES_PER_SECTOR, .pages_per_sector = PINETIME_NOR_PAGES_PER_SECTOR,
.sector_count = PINETIME_NOR_SECTOR_COUNT, .sector_count = PINETIME_NOR_SECTOR_COUNT,
}, },
.flag = PINETIME_NOR_FLAGS, .params = &_pinetime_nor_params,
.opcode = &mtd_spi_nor_opcode_default,
.spi = PINETIME_NOR_SPI_DEV,
.cs = PINETIME_NOR_SPI_CS,
.addr_width = 3,
.mode = PINETIME_NOR_SPI_MODE,
.clk = PINETIME_NOR_SPI_CLK,
}; };
mtd_dev_t *mtd0 = (mtd_dev_t *)&pinetime_nor_dev; mtd_dev_t *mtd0 = (mtd_dev_t *)&pinetime_nor_dev;