| 213 | ]; |
| 214 | |
| 215 | pub trait CrosEcDriver { |
| 216 | fn read_memory(&self, offset: u16, length: u16) -> Option<Vec<u8>>; |
| 217 | fn send_command(&self, command: u16, command_version: u8, data: &[u8]) -> EcResult<Vec<u8>>; |
| 218 | } |
| 219 | |
| 220 | #[derive(Clone)] |
| 221 | pub struct CrosEc { |
nothing calls this directly
no outgoing calls
no test coverage detected