File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ pub const TEST_MACHINE: u16 = 0x0033;
4747pub const IP20_TEST_MACHINE : u16 = 0x0034 ;
4848pub const ANALOG_INPUT_TEST_MACHINE : u16 = 0x0035 ;
4949
50- pub const MACHINE_BECKHOFF_TEST : u16 = 0x0011 ;
50+ pub const MINIMAL_EXAMPLE_MOTOR : u16 = 0x0011 ;
5151
5252use serde_json:: Value ;
5353use smol:: lock:: RwLock ;
Original file line number Diff line number Diff line change 11use crate :: machine_identification:: { MachineIdentification , MachineIdentificationUnique } ;
22use crate :: { AsyncThreadMessage , Machine , MachineMessage } ;
3- use crate :: { MACHINE_BECKHOFF_TEST , VENDOR_QITECH } ;
3+ use crate :: { MINIMAL_EXAMPLE_MOTOR , VENDOR_QITECH } ;
44use control_core:: socketio:: namespace:: NamespaceCacheingLogic ;
55use ethercat_hal:: io:: stepper_velocity_el70x1:: StepperVelocityEL70x1 ;
66use smol:: channel:: { Receiver , Sender } ;
@@ -40,7 +40,7 @@ impl Machine for MotorTestMachine {
4040impl MotorTestMachine {
4141 pub const MACHINE_IDENTIFICATION : MachineIdentification = MachineIdentification {
4242 vendor : VENDOR_QITECH ,
43- machine : MACHINE_BECKHOFF_TEST ,
43+ machine : MINIMAL_EXAMPLE_MOTOR ,
4444 } ;
4545
4646 pub fn emit_state ( & mut self ) {
You can’t perform that action at this time.
0 commit comments