1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#[allow(unused)]
pub mod s34ml08g3_4kb {
use crate::nand::{NandChip, NandConfiguration, NandTiming};
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct S34ml08g3 {}
impl NandChip for S34ml08g3 {
const TIMING: NandTiming = NandTiming {
nce_setup_time: 15, data_setup_time: 7, ale_hold_time: 5, cle_hold_time: 5, ale_to_nre_delay: 10, cle_to_nre_delay: 10, nre_pulse_width_ns: 10, nwe_pulse_width_ns: 10, read_cycle_time_ns: 20, write_cycle_time_ns: 20, nwe_high_to_busy_ns: 100, };
const CONFIG: NandConfiguration = NandConfiguration {
data_width: 8, column_bits: 12, };
}
}