OVMS3-idf/components/spiffs/test_spiffs_host/test_utils.c

8 lines
268 B
C
Raw Normal View History

#include "esp_spi_flash.h"
#include "esp_partition.h"
2018-06-21 10:51:44 +02:00
void init_spi_flash(const char* chip_size, size_t block_size, size_t sector_size, size_t page_size, const char* partition_bin)
{
spi_flash_init(chip_size, block_size, sector_size, page_size, partition_bin);
2018-06-21 10:51:44 +02:00
}