Home
last modified time | relevance | path

Searched refs:b_vol (Results 1 – 1 of 1) sorted by relevance

/hal_espressif-3.6.0/components/fatfs/src/
Dff.c5546 DWORD b_vol, b_fat, b_data; /* Base LBA for volume, fat, data */ local
5600 b_vol = ld_dword(pte + PTE_StLba); /* Get volume start sector */
5605 b_vol = (opt & FM_SFD) ? 0 : 63; /* Volume start sector */
5606 if (sz_vol < b_vol) LEAVE_MKFS(FR_MKFS_ABORTED);
5607 sz_vol -= b_vol; /* Volume size */
5637 tbl[0] = b_vol; tbl[1] = b_vol + sz_vol - 1; /* Inform the device the volume area may be erased */
5646 b_fat = b_vol + 32; /* FAT start at offset 32 */
5649 if (b_data - b_vol >= sz_vol / 2) LEAVE_MKFS(FR_MKFS_ABORTED); /* Too small volume? */
5650 n_clst = (sz_vol - (b_data - b_vol)) / au; /* Number of clusters */
5747 sect = b_vol;
[all …]