Im working with nrf52833dk to implement USB mass storage using the flash to write into txt file.
main.c code is:
/*
* Copyright (c) 2016 Intel Corporation.
* Copyright (c) 2019-2020 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr.h>
#include <logging/log.h>
#include <usb/usb_device.h>
#include <fs/fs.h>
#include <stdio.h>
LOG_MODULE_REGISTER(main);
#if CONFIG_DISK_DRIVER_FLASH
#include <storage/flash_map.h>
#endif
#if CONFIG_FAT_FILESYSTEM_ELM
#include <ff.h>
#endif
#if CONFIG_FILE_SYSTEM_LITTLEFS
#include <fs/littlefs.h>
FS_LITTLEFS_DECLARE_DEFAULT_CONFIG(storage);
#endif
static struct fs_mount_t fs_mnt;
static int setup_flash(struct fs_mount_t *mnt)
{
int rc = 0;
#if CONFIG_DISK_DRIVER_FLASH
unsigned int id;
const struct flash_area *pfa;
mnt->storage_dev = (void *)FLASH_AREA_ID(storage);
id = (uintptr_t)mnt->storage_dev;
rc = flash_area_open(id, &pfa);
printk("Area %u at 0x%x on %s for %u bytes\n",
id, (unsigned int)pfa->fa_off, pfa->fa_dev_name,
(unsigned int)pfa->fa_size);
if (rc < 0 && IS_ENABLED(CONFIG_APP_WIPE_STORAGE)) {
printk("Erasing flash area ... ");
rc = flash_area_erase(pfa, 0, pfa->fa_size);
printk("%d\n", rc);
}
if (rc < 0) {
flash_area_close(pfa);
}
#endif
return rc;
}
static int mount_app_fs(struct fs_mount_t *mnt)
{
int rc;
#if CONFIG_FAT_FILESYSTEM_ELM
static FATFS fat_fs;
mnt->type = FS_FATFS;
mnt->fs_data = &fat_fs;
if (IS_ENABLED(CONFIG_DISK_DRIVER_RAM)) {
mnt->mnt_point = "/RAM:";
} else if (IS_ENABLED(CONFIG_DISK_DRIVER_SDMMC)) {
mnt->mnt_point = "/SD:";
} else {
mnt->mnt_point = "/NAND:";
}
#elif CONFIG_FILE_SYSTEM_LITTLEFS
mnt->type = FS_LITTLEFS;
mnt->mnt_point = "/lfs";
mnt->fs_data = &storage;
#endif
rc = fs_mount(mnt);
return rc;
}
static void setup_disk(void)
{
struct fs_mount_t *mp = &fs_mnt;
struct fs_dir_t dir;
struct fs_file_t file;
struct fs_statvfs sbuf;
int rc;
char fname[]="text.txt";
fs_dir_t_init(&dir);
fs_file_t_init(&file);
if (IS_ENABLED(CONFIG_DISK_DRIVER_FLASH)) {
rc = setup_flash(mp);
if (rc < 0) {
LOG_ERR("Failed to setup flash area");
return;
}
}
if (!IS_ENABLED(CONFIG_FILE_SYSTEM_LITTLEFS) &&
!IS_ENABLED(CONFIG_FAT_FILESYSTEM_ELM)) {
LOG_INF("No file system selected");
return;
}
rc = mount_app_fs(mp);
if (rc < 0) {
LOG_ERR("Failed to mount filesystem");
return;
}
/* Allow log messages to flush to avoid interleaved output */
k_sleep(K_MSEC(50));
printk("Mount %s: %d\n", fs_mnt.mnt_point, rc);
rc = fs_statvfs(mp->mnt_point, &sbuf);
if (rc < 0) {
printk("FAIL: statvfs: %d\n", rc);
return;
}
printk("%s: bsize = %lu ; frsize = %lu ;"
" blocks = %lu ; bfree = %lu\n",
mp->mnt_point,
sbuf.f_bsize, sbuf.f_frsize,
sbuf.f_blocks, sbuf.f_bfree);
rc = fs_opendir(&dir, mp->mnt_point);
printk("%s opendir: %d\n", mp->mnt_point, rc);
if (rc < 0) {
LOG_ERR("Failed to open directory");
}
while (rc >= 0) {
struct fs_dirent ent = { 0 };
rc = fs_readdir(&dir, &ent);
if (rc < 0) {
LOG_ERR("Failed to read directory entries");
break;
}
if (ent.name[0] == 0) {
printk("End of files\n");
break;
}
printk(" %c %u %s\n",
(ent.type == FS_DIR_ENTRY_FILE) ? 'F' : 'D',
ent.size,
ent.name);
}
///
rc = fs_statvfs(fname, &sbuf);
printk("%s stat: %d\\n", fname, rc);
if (rc >= 0)
{
printk("\\tfn '%s' siz %u\\n" ,sbuf.f_bsize);
}
//struct fs_file_t file;
rc = fs_open(&file, fname, FS_O_CREATE | FS_O_WRITE);
if (rc < 0)
{
printk("FAIL: open %s: %d\\n", fname, rc);
return;
}
uint32_t boot_count = 0;
if (rc >= 0)
{
rc = fs_read(&file, &boot_count, sizeof(boot_count));
printk("%s read count %u: %d\\n", fname, boot_count, rc);
rc = fs_seek(&file, 0, FS_SEEK_SET);
printk("%s seek start: %d\\n", fname, rc);
}
boot_count += 1;
rc = fs_write(&file, &boot_count, sizeof(boot_count));
printk("%s write new boot count %u: %d\\n", fname,
boot_count, rc);
rc = fs_close(&file);
printk("%s close: %d\\n", fname, rc);
///
(void)fs_closedir(&dir);
return;
}
void main(void)
{
int ret,rc;
ret = usb_enable(NULL);
if (ret != 0) {
LOG_ERR("Failed to enable USB");
return;
}
LOG_INF("The device is put in USB mass storage mode.\n");
}
when flash and plug the usb the file storage apeare but the part of creating txt file and write boot_count did not work.
am I missing something?
also can I create csv file in zephyr to write log data?