void rt_hw_spiflash_init(void)
{
rt_uint32_t n;
rt_uint8_t* sector;
spi_flash.type = RT_Device_Class_Block;
spi_flash.init = rt_spiflash_init;
spi_flash.open = rt_spiflash_open;
spi_flash.close = rt_spiflash_close;
spi_flash.read = rt_spiflash_read;
spi_flash.write = rt_spiflash_write;
spi_flash.control = rt_spiflash_control;
spi_flash.private = RT_NULL;
at45db_SetPageSize(); // 设置为512字节模式
/* get the first sector to read partition table */
sector = (rt_uint8_t*) rt_malloc (512);
if (sector == RT_NULL)
{
rt_kprintf("allocate partition sector buffer failedn");
return;
}
n = rt_spiflash_read((rt_device_t)&spi_flash, 0, sector, 512);
if (n == 512)
{
rt_err_t status;
/* get the first partition */
status = dfs_filesystem_get_partition(&spi_flash_part, sector, 0);
if (status != RT_EOK)
{
/* there is no partition table */
spi_flash_part.offset = 0;
spi_flash_part.size = 0;
}
}
else
{
/* there is no partition table */
spi_flash_part.offset = 0;
spi_flash_part.size = 0;
}
/* release sector buffer */
rt_free(sector);
/* register sd device */
rt_device_register(&spi_flash, "spi0", RT_DEVICE_FLAG_RDWR);
}
这个成功了,运行结果:
finsh>>list_device()
device type
spi0 Block Device
sd0 Block Device
uart1 Character Device
0, 0x00000000
然后dfs_mount(“spi0”, “/“, “elm”, 0, 0) 就不成功,是因为flash没有格式化?
如果要在系统内对flash进行格式化,要怎样操作咧?