opentitanlib/spiflash/mod.rs
1// Copyright lowRISC contributors (OpenTitan project).
2// Licensed under the Apache License, Version 2.0, see LICENSE for details.
3// SPDX-License-Identifier: Apache-2.0
4
5pub mod flash;
6pub mod sfdp;
7
8pub use flash::{EraseMode, ReadMode, SpiFlash};
9pub use sfdp::{BlockEraseSize, Sfdp, SupportedAddressModes, WriteGranularity};