diff --git a/red/src/printer/gcode/mod.rs b/red/src/printer/gcode/mod.rs index 527158a..844eccd 100644 --- a/red/src/printer/gcode/mod.rs +++ b/red/src/printer/gcode/mod.rs @@ -3,12 +3,6 @@ /// - and the meaning of the reply can be parsed with `GcodeCommand::parse_reply(reply)` /// /// The intended use is though the `Printer::send_gcode()` function. -/// Example: -/// ```rust -/// let mut printer = Printer::connect(DEFAULT_TTY).await.unwrap(); -/// let command = Box::new(G0Command::new(true, true, true)); -/// let reply: GcodeReply = printer.send_gcode(command).await.unwrap(); -/// ``` mod g0; mod g28; mod g90;