This commit is contained in:
Cutieguwu
2026-01-02 00:12:40 -05:00
parent 53d773e2ea
commit 845d9a3cc9
2 changed files with 5 additions and 6 deletions

View File

@@ -9,9 +9,10 @@ use recovery::Recover;
use anyhow;
const FB_SECTOR_SIZE: usize = 2048;
const FB_CLUSTER_LEN: usize = 128;
const FB_NULL_VALUE: u8 = 0;
const MAX_BUFFER_SIZE: usize = FB_SECTOR_SIZE * 16;
const MAX_BUFFER_SIZE: usize = FB_SECTOR_SIZE * FB_CLUSTER_LEN;
fn main() -> anyhow::Result<()> {
let mut recover_tool = Recover::new()?;