Max[m]: ``` // Check if the AP is accessible let (interface, ap) = memory.try_as_parts()?; let csw = ap.generic_status(interface)?; if !csw.DeviceEn { return Ok(Tree::new( "Memory AP is not accessible, DeviceEn bit not set".to_string(), )); } ```