diff --git a/examples/ethernet.rs b/examples/ethernet.rs index 3e3f43b..9a6ee16 100644 --- a/examples/ethernet.rs +++ b/examples/ethernet.rs @@ -76,7 +76,7 @@ use firmware::{ cpld::{ CPLD, }, - scpi::{ HelloWorldCommand, SwitchOnCommand }, + scpi::{ HelloWorldCommand, Channel1SwitchCommand }, Urukul, }; use scpi::prelude::*; @@ -318,25 +318,6 @@ fn main() -> ! { // scpi_crate_version!(), //Test - Node { - name: b"ABORt", - handler: None, - optional: false, - sub: &[], - }, - Node { - name: b"INITiate", - handler: None, - optional: false, - sub: &[ - Node { - name: b"IMMediate", - handler: None, - optional: true, - sub: &[], - } - ], - }, Node { name: b"EXAMple", optional: true, @@ -358,10 +339,17 @@ fn main() -> ! { ], }, Node { - name: b"SWitch", + name: b"CHANNEL1", optional: false, - handler: Some(&SwitchOnCommand {}), - sub: &[], + handler: None, + sub: &[ + Node { + name: b"SWitch", + optional: false, + handler: Some(&Channel1SwitchCommand {}), + sub: &[], + } + ], } ];