Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

// External SPI flash uses standard SPI interface

STATIC const mp_soft_spi_obj_t soft_spi_bus = {
static const mp_soft_spi_obj_t soft_spi_bus = {
.delay_half = MICROPY_HW_SOFTSPI_MIN_DELAY,
.polarity = 0,
.phase = 0,
Expand All @@ -12,7 +12,7 @@ STATIC const mp_soft_spi_obj_t soft_spi_bus = {
};

#if MICROPY_HW_SPIFLASH_ENABLE_CACHE
STATIC mp_spiflash_cache_t spi_bdev_cache;
static mp_spiflash_cache_t spi_bdev_cache;
#endif

const mp_spiflash_config_t spiflash_config = {
Expand Down