nander-rs 0.5.5

Modern SPI NAND/NOR Flash programmer for CH341A with cross-platform GUI and comprehensive diagnostics
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Application Layer
//!
//! Orchestrates the business logic by coordinating domain and infrastructure.

pub mod batch;
pub mod diagnostics;
pub mod services;
pub mod use_cases;

// Re-export commonly used types
pub use batch::{BatchOperation, BatchScript};
pub use diagnostics::DiagnosticTool;
pub use use_cases::{
    DetectChipUseCase, EraseFlashUseCase, EraseParams, ReadFlashUseCase, ReadParams,
    WriteFlashUseCase, WriteParams,
};