diff --git a/2_Motor_Master/Motor_Master/Motor_Master/ADS1299.c b/2_Motor_Master/Motor_Master/Motor_Master/ADS1299.c
index 0860fac..6079742 100644
--- a/2_Motor_Master/Motor_Master/Motor_Master/ADS1299.c
+++ b/2_Motor_Master/Motor_Master/Motor_Master/ADS1299.c
@@ -65,12 +65,15 @@ void initialize_ads()
/* Write Config Registers */
ADS1299_WREG(CONFIG1,0x94); // Set Config 1 Register
- ADS1299_WREG(CONFIG2,0xC0); // Set Config 2 Register
+ //ADS1299_WREG(CONFIG2,0xC0); // Set Config 2 Register - Standard
+ ADS1299_WREG(CONFIG2,0xD4); // Set Config 2 Register - internal test signal, pulsed
+ //ADS1299_WREG(CONFIG2,0xD7); // Set Config 2 Register - internal test signal, DC
ADS1299_WREG(CONFIG3,0xEC); // Set Config 3 Register
ADS1299_WREG(LOFF,0x02); // Set LOFF Register
for(uint8_t i=CH1SET; i<=CH4SET; i++) // set up to modify the 4 channel setting registers
{
- ADS1299.regData[i] = 0x68; // the regData array mirrors the ADS1299 register addresses
+ ADS1299.regData[i] = 0x68; // the regData array mirrors the ADS1299 register addresses
+ //ADS1299.regData[i] = 0x6D; // Test signal
}
ADS1299_WREGS(CH1SET,3); // write new channel settings
ADS1299_WREG(BIAS_SENSP,0xFF); // Set BIAS_SENSP Register
diff --git a/2_Motor_Master/Motor_Master/Motor_Master/main.c b/2_Motor_Master/Motor_Master/Motor_Master/main.c
index 1b4cd03..c5f6c91 100644
--- a/2_Motor_Master/Motor_Master/Motor_Master/main.c
+++ b/2_Motor_Master/Motor_Master/Motor_Master/main.c
@@ -81,18 +81,18 @@ void enable_NVIC_IRQ(void)
NVIC_EnableIRQ(DMAC_0_IRQn);
NVIC_EnableIRQ(DMAC_1_IRQn);
NVIC_SetPriority(DMAC_0_IRQn, 1);
- NVIC_SetPriority(ADC1_0_IRQn, 3);
+ NVIC_SetPriority(ADC1_0_IRQn, 2);
NVIC_EnableIRQ(TCC0_0_IRQn);
NVIC_EnableIRQ(TCC1_0_IRQn);
NVIC_EnableIRQ(EIC_2_IRQn);
- NVIC_SetPriority(EIC_2_IRQn, 3);
+ //NVIC_SetPriority(EIC_2_IRQn, 3);
//NVIC_SetPriority(TCC0_0_IRQn, 3);
//NVIC_EnableIRQ(EIC_5_IRQn);
}
void APPLICATION_StateMachine(void)
{
- Motor1.timerflags.current_loop_tic = false;
+ //Motor1.timerflags.current_loop_tic = false;
if (applicationStatus.fault)
{
@@ -177,10 +177,11 @@ int main(void)
angle_sensor_init();
initialize_ads();
/* External IRQ Config */
- ext_irq_register(GPIO_PIN(ADS_DATA_RDY), ADS1299_dataReadyISR);
- enable_NVIC_IRQ();
+
__enable_irq();
- //ADS1299_START();
+ enable_NVIC_IRQ();
+ ext_irq_register(GPIO_PIN(ADS_DATA_RDY), ADS1299_dataReadyISR);
+ ADS1299_START();
/* Replace with your application code */
while (1) {
@@ -195,10 +196,10 @@ int main(void)
//_dma_enable_transaction(DMAC_CHANNEL_CONF_SERCOM_1_RECEIVE, false);
//_dma_enable_transaction(DMAC_CHANNEL_CONF_SERCOM_1_TRANSMIT, false);
- //int16_t* angles;
- //angles = read_angle();
- //Motor1.motor_status.abs_position = degrees(angles[0]);
- //Motor2.motor_status.abs_position = degrees(angles[1]);
+ int16_t* angles;
+ angles = read_angle();
+ Motor1.motor_status.abs_position = degrees(angles[0]);
+ Motor2.motor_status.abs_position = degrees(angles[1]);
////field = ang_sense_read(AS_CMD_MAGNITUDE);
//*Spare1_tx = (field[0] & AS_MASK);
@@ -210,6 +211,7 @@ int main(void)
}
if (Motor1.timerflags.current_loop_tic) {
+ Motor1.timerflags.current_loop_tic = false;
APPLICATION_StateMachine();
exec_commutation(&Motor1);
exec_commutation(&Motor2);
@@ -217,7 +219,7 @@ int main(void)
if (ADS1299.data_ReadyFlag){
ADS1299.data_ReadyFlag = false;
- //ADS1299_UPDATECHANNELDATA();
+ ADS1299_UPDATECHANNELDATA();
}
if (run_ECAT) {ECAT_STATE_MACHINE();}
diff --git a/2_Motor_Slave/Motor_Slave/Motor_Slave/main.c b/2_Motor_Slave/Motor_Slave/Motor_Slave/main.c
index 5b529ca..079e31f 100644
--- a/2_Motor_Slave/Motor_Slave/Motor_Slave/main.c
+++ b/2_Motor_Slave/Motor_Slave/Motor_Slave/main.c
@@ -232,14 +232,14 @@ int main(void)
custom_logic_enable();
enable_NVIC_IRQ();
- //DMAC->Channel[0].CHCTRLA.reg |= DMAC_CHCTRLA_ENABLE;
- //DMAC->Channel[1].CHCTRLA.reg |= DMAC_CHCTRLA_ENABLE;
- _dma_enable_transaction(CONF_SERCOM_1_RECEIVE_DMA_CHANNEL, false);
- _dma_enable_transaction(CONF_SERCOM_1_TRANSMIT_DMA_CHANNEL, false);
+ DMAC->Channel[0].CHCTRLA.reg |= DMAC_CHCTRLA_ENABLE;
+ DMAC->Channel[1].CHCTRLA.reg |= DMAC_CHCTRLA_ENABLE;
+ //_dma_enable_transaction(CONF_SERCOM_1_RECEIVE_DMA_CHANNEL, false);
+ //_dma_enable_transaction(CONF_SERCOM_1_TRANSMIT_DMA_CHANNEL, false);
//as5048a_init(&SPI_3, &AS_1);
- ORIENTATION_SENSOR_0_init();
+ //ORIENTATION_SENSOR_0_init();
angle_sensor_init();
diff --git a/Examples/ADS129X b/Examples/ADS129X
new file mode 160000
index 0000000..e4bd32c
--- /dev/null
+++ b/Examples/ADS129X
@@ -0,0 +1 @@
+Subproject commit e4bd32c5feec9d23b34b92f015dbf176bbbeafe5
diff --git a/Twincat/MotorData/.vs/MotorData/v15/.suo b/Twincat/MotorData/.vs/MotorData/v15/.suo
index 92ed812..3ea1b8b 100644
Binary files a/Twincat/MotorData/.vs/MotorData/v15/.suo and b/Twincat/MotorData/.vs/MotorData/v15/.suo differ
diff --git a/Twincat/MotorData/MotorData/MotorData.tsproj b/Twincat/MotorData/MotorData/MotorData.tsproj
index 764d668..d32c3f0 100644
--- a/Twincat/MotorData/MotorData/MotorData.tsproj
+++ b/Twincat/MotorData/MotorData/MotorData.tsproj
@@ -5,8 +5,9 @@
+
-
+
PlcTask
@@ -113,39 +114,6 @@
GVL_motor_data.M2_Motor_dutyCycle
INT
-
- GVL_motor_data.EMG_CH1
-
- INT
-
-
- GVL_motor_data.EMG_CH2
- INT
-
-
- GVL_motor_data.EMG_CH3
- INT
-
-
- GVL_motor_data.EMG_CH4
- INT
-
-
- GVL_motor_data.EMG_CH5
- INT
-
-
- GVL_motor_data.EMG_CH6
- INT
-
-
- GVL_motor_data.EMG_CH7
- INT
-
-
- GVL_motor_data.EMG_CH8
- INT
-
GVL_motor_data.M3_Mode
BYTE
@@ -155,6 +123,23 @@
BYTE
+
+ GVL_motor_data.EMG_CH1
+
+ DINT
+
+
+ GVL_motor_data.EMG_CH2
+ DINT
+
+
+ GVL_motor_data.EMG_CH3
+ DINT
+
+
+ GVL_motor_data.EMG_CH4
+ DINT
+
GVL_motor_data.M3_Joint_rel_position
INT
@@ -443,7 +428,7 @@ QSPI_rx_buffer
#x02010030
20
- 10000000
+ 1000000
@@ -453,28 +438,28 @@ QSPI_rx_buffer
-
+
Device 2 (EtherCAT)
- Ethernet (Realtek PCIe GbE Family Controller)
- \DEVICE\{7A5E866B-9C27-4C9A-AB1A-3FD2FE6A43CC}
- b025aa33135b
+ Ethernet (TwinCAT-Intel PCI Ethernet Adapter (Gigab
+ \DEVICE\{B319FB6B-ED15-445B-9318-290BECEEFA76}
+ 4c5262a1d9ac
Image
-
- Box 2 (LAN9252-2_motor_Master)
+
+ Box 1 (LAN9252-2_motor_Master)
1000
-
+
001160000400010003000000000000000000001104010000
001880000000010004000000000000000000001800010000
0000000000000000001100020100000001000000000000000000000000000000
0000000000000000001800010100000002000000000000000000000000000000
-
+
BYTE
@@ -541,152 +526,140 @@ QSPI_rx_buffer
INT
- INT
+ DINT
- INT
+ DINT
- INT
+ DINT
+ DINT
+
+
INT
-
+
INT
-
+
INT
-
+
INT
-
- INT
-
-
- INT
-
-
- INT
-
-
- INT
-
-
- INT
-
-
+
BYTE
-
+
BYTE
-
+
INT
-
+
INT
-
+
INT
-
+
INT
-
+
INT
-
+
INT
-
+
INT
-
+
INT
-
+
INT
-
+
BYTE
-
+
BYTE
-
+
INT
-
+
INT
-
+
INT
-
+
INT
-
+
INT
-
+
INT
-
+
INT
-
+
INT
-
+
INT
-
+
INT
-
+
INT
-
+
INT
-
+
INT
-
+
INT
-
+
INT
-
+
INT
-
+
INT
-
+
INT
-
+
INT
-
+
INT
-
+
INT
-
+
BYTE
-
+
BYTE
-
+
INT
@@ -843,4 +816,102 @@ QSPI_rx_buffer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Twincat/MotorData/MotorData/Motordata_PLC/GVLs/GVL_EMG.TcGVL b/Twincat/MotorData/MotorData/Motordata_PLC/GVLs/GVL_EMG.TcGVL
new file mode 100644
index 0000000..c578111
--- /dev/null
+++ b/Twincat/MotorData/MotorData/Motordata_PLC/GVLs/GVL_EMG.TcGVL
@@ -0,0 +1,12 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Twincat/MotorData/MotorData/Motordata_PLC/GVLs/GVL_motor_data.TcGVL b/Twincat/MotorData/MotorData/Motordata_PLC/GVLs/GVL_motor_data.TcGVL
index d2bacb5..97d429a 100644
--- a/Twincat/MotorData/MotorData/Motordata_PLC/GVLs/GVL_motor_data.TcGVL
+++ b/Twincat/MotorData/MotorData/Motordata_PLC/GVLs/GVL_motor_data.TcGVL
@@ -1,5 +1,5 @@
-
+
{7999646c-51c9-45ae-9085-f34e5ecc5ec7}
+
+ Code
+ true
+
Code
true
diff --git a/Twincat/MotorData/MotorData/Motordata_PLC/POUs/MAIN.TcPOU b/Twincat/MotorData/MotorData/Motordata_PLC/POUs/MAIN.TcPOU
index ec02da2..3411a90 100644
--- a/Twincat/MotorData/MotorData/Motordata_PLC/POUs/MAIN.TcPOU
+++ b/Twincat/MotorData/MotorData/Motordata_PLC/POUs/MAIN.TcPOU
@@ -1,14 +1,23 @@
-
+
-
+
+
+
diff --git a/Twincat/MotorData/MotorData/Motordata_PLC/POUs/POU_Position_Seq.TcPOU b/Twincat/MotorData/MotorData/Motordata_PLC/POUs/POU_Position_Seq.TcPOU
index c1f6007..e3bf6e0 100644
--- a/Twincat/MotorData/MotorData/Motordata_PLC/POUs/POU_Position_Seq.TcPOU
+++ b/Twincat/MotorData/MotorData/Motordata_PLC/POUs/POU_Position_Seq.TcPOU
@@ -1,5 +1,5 @@
-
+
{38391c6d-6d4a-42f8-8ee7-9f45e5adafa8}
- "POS_1.t > T#6s"
+ "POS_1.t > T#3s"
""
80L
@@ -504,7 +504,7 @@ END_VAR
{38391c6d-6d4a-42f8-8ee7-9f45e5adafa8}
- "POS_2.t > T#6s"
+ "POS_2.t > T#3s"
""
125L
@@ -687,7 +687,7 @@ END_VAR
{38391c6d-6d4a-42f8-8ee7-9f45e5adafa8}
- "POS_3.t > T#6s"
+ "POS_3.t > T#3s"
""
49L
@@ -781,7 +781,35 @@ END_VAR
-
+
+
+ {38391c6d-6d4a-42f8-8ee7-9f45e5adafa8}
+
+ ""
+ ""
+
+ 143L
+ 5L
+
+
+ {7d894980-aeea-405c-a0f6-e2b26429c58f}
+
+ ""
+ ""
+
+ 144L
+ 5L
+
+
+ {01580b27-6378-448b-8ecb-0e4b795b58d6}
+
+ "FALSE"
+ "FALSE"
+
+ 145L
+ 5L
+
+
5L
-1L
@@ -1073,7 +1101,7 @@ END_VAR
-
@@ -1092,8 +1120,8 @@ GVL_motor_data.M2_Desired_pos := 1000;]]>
-
+
@@ -1224,8 +1252,8 @@ GVL_motor_data.M2_Desired_pos := 0;]]>
-
+
diff --git a/Twincat/MotorData/MotorData/Motordata_PLC/PlcTask.TcTTO b/Twincat/MotorData/MotorData/Motordata_PLC/PlcTask.TcTTO
index dc67fd4..ab7ded2 100644
--- a/Twincat/MotorData/MotorData/Motordata_PLC/PlcTask.TcTTO
+++ b/Twincat/MotorData/MotorData/Motordata_PLC/PlcTask.TcTTO
@@ -1,8 +1,8 @@
-
+
- 10000
+ 1000
20
MAIN
@@ -12,6 +12,5 @@
{5c5f5f84-e7f6-4c9f-8e6b-25d1b89465a8}
{07b2fc7d-725f-4928-b7bb-1c1ddcb9a703}
{49bd0358-5e57-44dd-9076-193288aeb9f7}
-
\ No newline at end of file
diff --git a/Twincat/MotorData/Scope Project1.svdx b/Twincat/MotorData/Scope Project1.svdx
new file mode 100644
index 0000000..f17bfa1
Binary files /dev/null and b/Twincat/MotorData/Scope Project1.svdx differ
diff --git a/Twincat/MotorData/TwinCAT Measurement Project1/Scope Project1.tcscopex b/Twincat/MotorData/TwinCAT Measurement Project1/Scope Project1.tcscopex
index 1bebd77..19e4ea7 100644
--- a/Twincat/MotorData/TwinCAT Measurement Project1/Scope Project1.tcscopex
+++ b/Twincat/MotorData/TwinCAT Measurement Project1/Scope Project1.tcscopex
@@ -15,12 +15,14 @@
false
<?xml version="1.0" encoding="utf-16"?>
<Layout>
- <Window Guid="78cbee9f-0a39-403c-8595-676f5c6b5671" LastFocused="132736992270715186" DockedSize="200" PopupSize="0" FloatingLocation="-1, -1" FloatingSize="550, 400" LastOpenDockSituation="Document" LastFixedDockSituation="Document" LastFixedDockLocation="Right" LastFloatingWindowGuid="00000000-0000-0000-0000-000000000000" LastDockContainerCount="0" LastDockContainerIndex="0" DockedWorkingSize="250, 400" DockedWindowGroupGuid="00000000-0000-0000-0000-000000000000" DockedIndexInWindowGroup="0" DockedSplitPath="0" DocumentWorkingSize="250, 400" DocumentWindowGroupGuid="a5d32a52-1886-4ce8-9970-731db69737a6" DocumentIndexInWindowGroup="0" DocumentSplitPath="0" FloatingWorkingSize="250, 400" FloatingWindowGroupGuid="00000000-0000-0000-0000-000000000000" FloatingIndexInWindowGroup="0" FloatingSplitPath="0" />
+ <Window Guid="17812b7c-7d18-4668-ae12-d2633798b279" LastFocused="132742705121217503" DockedSize="200" PopupSize="0" FloatingLocation="-1, -1" FloatingSize="550, 400" LastOpenDockSituation="Document" LastFixedDockSituation="Document" LastFixedDockLocation="Right" LastFloatingWindowGuid="00000000-0000-0000-0000-000000000000" LastDockContainerCount="0" LastDockContainerIndex="0" DockedWorkingSize="250, 400" DockedWindowGroupGuid="00000000-0000-0000-0000-000000000000" DockedIndexInWindowGroup="0" DockedSplitPath="0" DocumentWorkingSize="250, 400" DocumentWindowGroupGuid="a5d32a52-1886-4ce8-9970-731db69737a6" DocumentIndexInWindowGroup="1" DocumentSplitPath="0" FloatingWorkingSize="250, 400" FloatingWindowGroupGuid="00000000-0000-0000-0000-000000000000" FloatingIndexInWindowGroup="0" FloatingSplitPath="0" />
+ <Window Guid="8766837b-106b-4ca8-84ce-2fbbc3ef10f3" LastFocused="132742702609850464" DockedSize="200" PopupSize="0" FloatingLocation="-1, -1" FloatingSize="550, 400" LastOpenDockSituation="Document" LastFixedDockSituation="Document" LastFixedDockLocation="Right" LastFloatingWindowGuid="00000000-0000-0000-0000-000000000000" LastDockContainerCount="0" LastDockContainerIndex="0" DockedWorkingSize="250, 400" DockedWindowGroupGuid="00000000-0000-0000-0000-000000000000" DockedIndexInWindowGroup="0" DockedSplitPath="0" DocumentWorkingSize="250, 400" DocumentWindowGroupGuid="a5d32a52-1886-4ce8-9970-731db69737a6" DocumentIndexInWindowGroup="0" DocumentSplitPath="0" FloatingWorkingSize="250, 400" FloatingWindowGroupGuid="00000000-0000-0000-0000-000000000000" FloatingIndexInWindowGroup="0" FloatingSplitPath="0" />
<DocumentContainer Dock="5">
<SplitLayoutSystem WorkingSize="250, 400" SplitMode="0">
- <ControlLayoutSystem WorkingSize="250, 400" Guid="a5d32a52-1886-4ce8-9970-731db69737a6" Collapsed="0" SelectedControl="78cbee9f-0a39-403c-8595-676f5c6b5671">
+ <ControlLayoutSystem WorkingSize="250, 400" Guid="a5d32a52-1886-4ce8-9970-731db69737a6" Collapsed="0" SelectedControl="17812b7c-7d18-4668-ae12-d2633798b279">
<Controls>
- <Control Guid="78cbee9f-0a39-403c-8595-676f5c6b5671" />
+ <Control Guid="8766837b-106b-4ca8-84ce-2fbbc3ef10f3" />
+ <Control Guid="17812b7c-7d18-4668-ae12-d2633798b279" />
</Controls>
</ControlLayoutSystem>
</SplitLayoutSystem>
@@ -41,10 +43,334 @@
0
- 10.183.82.252.1.1
+ 192.168.61.1.1.1
+ Local
+ 0
+ 10000
+
+
+ 0
+
+
+ TwinCAT
+ ADS
+ TcBinary
+ Present
+
+ 0
+ 0
+
+
+
+ REAL32
+ Black
+ true
+ 1
+ false
+ 24de5fd2-67a3-4d17-9b2f-e37ef463e046
+ 16448
+ 385076
+ false
+ false
+ EMG_CH1_uV
+ 0
+
+
+ 0
+ None
+ 1
+ none
+
+ 1
+
+ 0
+
+
+
+ 0
+
+ 0
+ none
+ (None)
+ 1
+
+
+ 0
+ 1
+
+ UnitOfOne
+
+ 0
+ None
+
+ 0
+ none
+ 1
+
+ none
+
+
+ 0
+ 10
+
+ .svacq
+ true
+ GVL_EMG.EMG_CH1_uV
+ 851
+ 0
+ AdsAcquisition_77
+ true
+ true
+ 4
+
+
+ 192.168.61.1.1.1
+ Local
+ 0
+ 10000
+
+
+ 0
+
+
+ TwinCAT
+ ADS
+ TcBinary
+ Present
+
+ 0
+ 0
+
+
+
+ REAL32
+ Black
+ true
+ 2
+ false
+ 050df458-283b-4aab-9c50-02776e050173
+ 16448
+ 385080
+ false
+ false
+ EMG_CH2_uV
+ 0
+
+
+ 0
+ None
+ 1
+ none
+
+ 1
+
+ 0
+
+
+
+ 0
+
+ 0
+ none
+ (None)
+ 1
+
+
+ 0
+ 1
+
+ UnitOfOne
+
+ 0
+ None
+
+ 0
+ none
+ 1
+
+ none
+
+
+ 0
+ 10
+
+ .svacq
+ true
+ GVL_EMG.EMG_CH2_uV
+ 851
+ 0
+ AdsAcquisition_77
+ true
+ true
+ 4
+
+
+ 192.168.61.1.1.1
+ Local
+ 0
+ 10000
+
+
+ 0
+
+
+ TwinCAT
+ ADS
+ TcBinary
+ Present
+
+ 0
+ 0
+
+
+
+ REAL32
+ Black
+ true
+ 3
+ false
+ eda5e08a-a0c1-46d5-a386-55a53fe55cb8
+ 16448
+ 385084
+ false
+ false
+ EMG_CH3_uV
+ 0
+
+
+ 0
+ None
+ 1
+ none
+
+ 1
+
+ 0
+
+
+
+ 0
+
+ 0
+ none
+ (None)
+ 1
+
+
+ 0
+ 1
+
+ UnitOfOne
+
+ 0
+ None
+
+ 0
+ none
+ 1
+
+ none
+
+
+ 0
+ 10
+
+ .svacq
+ true
+ GVL_EMG.EMG_CH3_uV
+ 851
+ 0
+ AdsAcquisition_77
+ true
+ true
+ 4
+
+
+ 192.168.61.1.1.1
+ Local
+ 0
+ 10000
+
+
+ 0
+
+
+ TwinCAT
+ ADS
+ TcBinary
+ Present
+
+ 0
+ 0
+
+
+
+ REAL32
+ Black
+ true
+ 4
+ false
+ 72a5bcb2-9496-4a66-8ac2-c891ae65b624
+ 16448
+ 385088
+ false
+ false
+ EMG_CH4_uV
+ 0
+
+
+ 0
+ None
+ 1
+ none
+
+ 1
+
+ 0
+
+
+
+ 0
+
+ 0
+ none
+ (None)
+ 1
+
+
+ 0
+ 1
+
+ UnitOfOne
+
+ 0
+ None
+
+ 0
+ none
+ 1
+
+ none
+
+
+ 0
+ 10
+
+ .svacq
+ true
+ GVL_EMG.EMG_CH4_uV
+ 851
+ 0
+ AdsAcquisition_77
+ true
+ true
+ 4
+
+
+ 192.168.61.1.1.1
Input
0
- 100000
+ 10000
0
@@ -63,11 +389,11 @@
INT16
Black
true
- 1
+ 5
false
- a4b43477-a7f5-45df-ba58-5a1961bbb4e8
+ 13dad77b-fd32-432c-abcb-0963197b16db
61472
- 385002
+ 385092
false
false
M1_Joint_rel_position
@@ -116,97 +442,16 @@
GVL_motor_data.M1_Joint_rel_position
851
0
- AdsAcquisition_124
+ AdsAcquisition_77
true
true
2
- 10.183.82.252.1.1
- Input
- 0
- 100000
-
-
- 0
-
-
- TwinCAT
- ADS
- TcBinary
- Present
-
- 0
- 0
-
-
-
- INT16
- Black
- true
- 2
- false
- 935b9dda-7837-4cf8-8f56-e1e264fc242b
- 61472
- 385022
- false
- false
- M2_Joint_rel_position
- 0
-
-
- 0
- None
- 1
- none
-
- 1
-
- 0
-
-
-
- 0
-
- 0
- none
- (None)
- 1
-
-
- 0
- 1
-
- UnitOfOne
-
- 0
- None
-
- 0
- none
- 1
-
- none
-
-
- 0
- 10
-
- .svacq
- true
- GVL_motor_data.M2_Joint_rel_position
- 851
- 0
- AdsAcquisition_124
- true
- true
- 2
-
-
- 10.183.82.252.1.1
+ 192.168.61.1.1.1
Output
0
- 100000
+ 10000
0
@@ -225,92 +470,11 @@
INT16
Black
true
- 3
+ 6
false
- 11e44e74-740b-4dd1-a66e-8b08c1ec7464
+ cf06dfb5-6728-427c-a868-4f8a80c4ce1b
61488
- 450182
- false
- false
- M2_Desired_pos
- 0
-
-
- 0
- None
- 1
- none
-
- 1
-
- 0
-
-
-
- 0
-
- 0
- none
- (None)
- 1
-
-
- 0
- 1
-
- UnitOfOne
-
- 0
- None
-
- 0
- none
- 1
-
- none
-
-
- 0
- 10
-
- .svacq
- true
- GVL_motor_data.M2_Desired_pos
- 851
- 0
- AdsAcquisition_124
- true
- true
- 2
-
-
- 10.183.82.252.1.1
- Output
- 0
- 100000
-
-
- 0
-
-
- TwinCAT
- ADS
- TcBinary
- Present
-
- 0
- 0
-
-
-
- INT16
- Black
- true
- 4
- false
- 63b92219-8a5d-4088-92fd-615eb88540be
- 61488
- 385190
+ 385212
false
false
M1_Desired_pos
@@ -359,16 +523,16 @@
GVL_motor_data.M1_Desired_pos
851
0
- AdsAcquisition_124
+ AdsAcquisition_77
true
true
2
- 10.183.82.252.1.1
+ 192.168.61.1.1.1
Input
0
- 100000
+ 10000
0
@@ -387,14 +551,14 @@
INT16
Black
true
- 5
+ 7
false
- 0d4c4b39-03cd-442e-8061-e06b858e0bdb
+ 8d7766a1-e5c2-4084-b1e1-2a1cde8bc625
61472
- 385008
+ 385112
false
false
- M1_Motor_current_bus
+ M2_Joint_rel_position
0
@@ -437,19 +601,19 @@
.svacq
true
- GVL_motor_data.M1_Motor_current_bus
+ GVL_motor_data.M2_Joint_rel_position
851
0
- AdsAcquisition_124
+ AdsAcquisition_77
true
true
2
- 10.183.82.252.1.1
- Input
+ 192.168.61.1.1.1
+ Output
0
- 100000
+ 10000
0
@@ -468,14 +632,14 @@
INT16
Black
true
- 6
+ 8
false
- 092e4270-4be2-41af-a1d7-8105aff42f22
- 61472
- 385028
+ 8b889ab1-8104-4807-8962-50fc84d9d53b
+ 61488
+ 385228
false
false
- M2_Motor_current_bus
+ M2_Desired_pos
0
@@ -518,10 +682,334 @@
.svacq
true
- GVL_motor_data.M2_Motor_current_bus
+ GVL_motor_data.M2_Desired_pos
851
0
- AdsAcquisition_124
+ AdsAcquisition_77
+ true
+ true
+ 2
+
+
+ 192.168.61.1.1.1
+ Input
+ 0
+ 10000
+
+
+ 0
+
+
+ TwinCAT
+ ADS
+ TcBinary
+ Present
+
+ 0
+ 0
+
+
+
+ INT16
+ Black
+ true
+ 9
+ false
+ 92af127e-8066-47e6-907d-f3e7f8932f20
+ 61472
+ 385148
+ false
+ false
+ M3_Joint_rel_position
+ 0
+
+
+ 0
+ None
+ 1
+ none
+
+ 1
+
+ 0
+
+
+
+ 0
+
+ 0
+ none
+ (None)
+ 1
+
+
+ 0
+ 1
+
+ UnitOfOne
+
+ 0
+ None
+
+ 0
+ none
+ 1
+
+ none
+
+
+ 0
+ 10
+
+ .svacq
+ true
+ GVL_motor_data.M3_Joint_rel_position
+ 851
+ 0
+ AdsAcquisition_77
+ true
+ true
+ 2
+
+
+ 192.168.61.1.1.1
+ Output
+ 0
+ 10000
+
+
+ 0
+
+
+ TwinCAT
+ ADS
+ TcBinary
+ Present
+
+ 0
+ 0
+
+
+
+ INT16
+ Black
+ true
+ 10
+ false
+ 18d32ea4-6af2-440c-b6ce-6c8e7e4d7815
+ 61488
+ 385244
+ false
+ false
+ M3_Desired_pos
+ 0
+
+
+ 0
+ None
+ 1
+ none
+
+ 1
+
+ 0
+
+
+
+ 0
+
+ 0
+ none
+ (None)
+ 1
+
+
+ 0
+ 1
+
+ UnitOfOne
+
+ 0
+ None
+
+ 0
+ none
+ 1
+
+ none
+
+
+ 0
+ 10
+
+ .svacq
+ true
+ GVL_motor_data.M3_Desired_pos
+ 851
+ 0
+ AdsAcquisition_77
+ true
+ true
+ 2
+
+
+ 192.168.61.1.1.1
+ Input
+ 0
+ 10000
+
+
+ 0
+
+
+ TwinCAT
+ ADS
+ TcBinary
+ Present
+
+ 0
+ 0
+
+
+
+ INT16
+ Black
+ true
+ 11
+ false
+ 6ac2c5bb-eae6-475a-b849-7e5b7c9c9565
+ 61472
+ 385168
+ false
+ false
+ M4_Joint_rel_position
+ 0
+
+
+ 0
+ None
+ 1
+ none
+
+ 1
+
+ 0
+
+
+
+ 0
+
+ 0
+ none
+ (None)
+ 1
+
+
+ 0
+ 1
+
+ UnitOfOne
+
+ 0
+ None
+
+ 0
+ none
+ 1
+
+ none
+
+
+ 0
+ 10
+
+ .svacq
+ true
+ GVL_motor_data.M4_Joint_rel_position
+ 851
+ 0
+ AdsAcquisition_77
+ true
+ true
+ 2
+
+
+ 192.168.61.1.1.1
+ Output
+ 0
+ 10000
+
+
+ 0
+
+
+ TwinCAT
+ ADS
+ TcBinary
+ Present
+
+ 0
+ 0
+
+
+
+ INT16
+ Black
+ true
+ 12
+ false
+ 1e7a9f36-2614-4cf7-b72a-1117927e93e9
+ 61488
+ 385260
+ false
+ false
+ M4_Desired_pos
+ 0
+
+
+ 0
+ None
+ 1
+ none
+
+ 1
+
+ 0
+
+
+
+ 0
+
+ 0
+ none
+ (None)
+ 1
+
+
+ 0
+ 1
+
+ UnitOfOne
+
+ 0
+ None
+
+ 0
+ none
+ 1
+
+ none
+
+
+ 0
+ 10
+
+ .svacq
+ true
+ GVL_motor_data.M4_Desired_pos
+ 851
+ 0
+ AdsAcquisition_77
true
true
2
@@ -530,6 +1018,17 @@
.svdp
DataPool_85
+
+
+ Black
+ edd388f8-a158-4cab-b19b-e61383271ec9
+ false
+ Trigger
+ 100
+
+ .svtm
+ TriggerModule_97
+
0
true
@@ -538,32 +1037,93 @@
-986896
false
-16777216
- 78cbee9f-0a39-403c-8595-676f5c6b5671
+ 8766837b-106b-4ca8-84ce-2fbbc3ef10f3
false
00000000-0000-0000-0000-000000000000
- YT Chart
+ EMG
false
- 10
+ 11
+
+
+ -1
+ -16777216
+ d57e8a37-d809-443a-8665-68b47ba5244d
+ false
+ Overview Chart (1)
+ false
+ 100
+ .svochart
+ OverviewChart_69
+
+
+
+ Black
+ 1
+ 254d6d61-1e9b-467f-af43-9c8d2d481149
+ false
+ Chart Style (1)
+ false
+ 100
+ true
+
+
+
+ Black
+ 5f3d785e-68cb-44e6-b20a-2e10019b0fd8
+ false
+ Chartzoom Style (1)
+ true
+ 100
+ .svstyle
+ ChartZoomStyle_73
+ true
+
+
+
+ 16
+ 16
+
+
+ Black
+ 3900669951
+ All
+ a1261570-7840-4501-b702-5c816e3416da
+ false
+ Chartmenu Style (1)
+ 100
+ .svstyle
+ 8.25
+ ChartMenuStyle_75
+ 8.25
+ true
+ true
+ true
+
+
+ .svstyle
+ ChartStyle_71
+ true
+
-1
true
- 15e9ec12-9179-4038-aa1e-15391f92e232
+ c687cf68-6997-4ad9-b275-88754793d603
false
- Axis Group
+ EMG_CH1
10
Black
- 591ede28-e71e-4531-b31a-947f3b4f6387
+ df0cc7fa-2902-47a5-9083-76a921cafef5
false
false
false
100000000
-0.5
- Time Axis
+ Time Axis (1)
X
MinMax
100
@@ -575,17 +1135,17 @@
-16777216
10
1
- 3b6e2716-2450-4b96-a2b3-1fe8e58c760c
+ 653f6956-e2f9-4c64-b3a9-7fa3575ac1db
false
1
- Axis Style (1)
+ Axis Style (4)
6
false
100
false
5
.svstyle
- AxisStyle_89
+ AxisStyle_94
true
@@ -595,7 +1155,189 @@
Black
- af7ff3e7-6bad-4633-a4e0-8f8c6b51dd82
+ 3a48c674-681c-487f-b7dc-e38f1b3bc8b4
+ false
+ false
+ false
+ 0.5
+ -0.5
+ Value Axis (3)
+ Y
+ AutoGrowOnly
+ 100
+
+
+
+ -16777216
+ true
+ -16777216
+ 10
+ 1
+ 0a55bbd2-e93e-40e3-aef6-a294a5472b9a
+ false
+ 1
+ Axis Style (5)
+ 6
+ false
+ 100
+ false
+ 5
+ .svstyle
+ AxisStyle_94
+ true
+
+
+ .svaxis
+ Value Axis
+
+
+
+ Black
+ 0314c1ce-c764-40c6-8e62-d45edac3a0d8
+ false
+ Marker Container (3)
+ 100
+
+ .svmc
+ MarkerContainer_98
+
+
+
+ -8355840
+ true
+ 304db275-d6ee-4d43-a63a-165ddaa8b234
+ false
+ EMG_CH1_uV
+ 10
+
+
+ 24de5fd2-67a3-4d17-9b2f-e37ef463e046
+ 18446744073709551615
+
+ Black
+ 906de937-72cc-41d8-9e65-1d48bd969473
+ false
+ Y: EMG_CH1_uV
+ 0
+
+
+ 0
+ None
+ 1
+ none
+
+ 1
+
+ 0
+
+
+
+ 0
+
+ 0
+ none
+ (None)
+ 1
+
+
+ 0
+ 1
+
+ UnitOfOne
+
+ 0
+ None
+
+ 0
+ none
+ 1
+
+ none
+
+
+ 1
+ 2
+
+ .svai
+ AcquisitionInterpreter_102
+ Y
+
+
+
+ Black
+ 559c05bd-9144-4229-acd0-85b0fe2e9d50
+ false
+ Channel Style (6)
+ 100
+
+
+ true
+
+ Plum
+ 847282176
+ None
+ 8f186d1a-77a4-4d5d-b2da-3c997f24393d
+ false
+ 1
+ -8355840
+ 2
+ Auto
+ Series Style (6)
+ Line
+ 100
+ .svstyle
+ SeriesStyle_112
+
+
+
+ Black
+ 98a60805-43d3-4a55-868c-f37474fa02cb
+ false
+ Min/Max Style (6)
+ false
+ false
+ 100
+ .svstyle
+ MinMaxStyle_113
+
+
+
+ Black
+ d3927660-d554-4e33-a5c8-b1a1b30d9d3b
+ false
+ TimeShiftStyle_114
+ 100
+ .svtss
+ 0
+ TimeShiftStyle_114
+
+
+ .svstyle
+ ChannelStyle_110
+ true
+
+
+ .svchannel
+ Channel_100
+
+
+ .svagroup
+ AxisGroup_90
+
+
+
+ -1
+ true
+ 2ad8a948-9a07-4728-9a93-f8b882f98216
+ false
+ EMG_CH2
+ 11
+
+ df0cc7fa-2902-47a5-9083-76a921cafef5
+
+
+ Black
+ f60b8e52-7f1c-4eaa-a19e-cfa6e43b5baa
false
false
false
@@ -613,7 +1355,7 @@
-16777216
10
1
- 761888bb-e98d-4cc1-a631-072a746aaa3f
+ 4652cfbc-9441-4e61-a1d5-3d9f92aa27c2
false
1
Axis Style
@@ -623,7 +1365,7 @@
false
5
.svstyle
- AxisStyle_91
+ AxisStyle_94
true
@@ -633,83 +1375,692 @@
Black
- 0b1bdbeb-f47e-4d4d-b4ce-0ab39d097817
+ 0359a134-d032-4ebb-a756-cc66fce0c76a
false
Marker Container
100
.svmc
- MarkerContainer_92
+ MarkerContainer_136
- -16744448
+ -16711681
true
- 0240e151-9951-46d9-86f7-07f636667d7a
+ 2f6b0899-ae6b-442a-bb70-db5045973c79
false
- M1_Joint_rel_position
- 10
+ EMG_CH2_uV
+ 11
+
+ 050df458-283b-4aab-9c50-02776e050173
+ 18446744073709551615
+
+ Black
+ 5700ed4c-4d06-4da2-b335-3c24eb42be2a
+ false
+ Y: EMG_CH2_uV
+ 0
+
+
+ 0
+ None
+ 1
+ none
+
+ 1
+
+ 0
+
+
+
+ 0
+
+ 0
+ none
+ (None)
+ 1
+
+
+ 0
+ 1
+
+ UnitOfOne
+
+ 0
+ None
+
+ 0
+ none
+ 1
+
+ none
+
+
+ 1
+ 2
+
+ .svai
+ AcquisitionInterpreter_102
+ Y
+
Black
- 627a50a4-fc1e-4e8d-8642-e792197c5463
+ 372190e1-db4d-4e8b-a1c1-9df29e0cdedc
false
- Channel Style
+ Channel Style (7)
100
true
Plum
- 838893568
+ 838926335
None
- 20b4617a-e289-45c7-bcd7-bbcd9c2945ea
+ 2a85d269-7056-4fea-abe6-e9db7ceabcb3
false
1
- -16744448
+ -16711681
2
Auto
- Series Style
+ Series Style (7)
Line
100
.svstyle
- SeriesStyle_55
+ SeriesStyle_112
Black
- 7456ce08-64e0-4d58-8f80-d76eef3eec7c
+ 103f71a4-f687-4b2e-af83-00a5c12d5877
false
- Min/Max Style
+ Min/Max Style (7)
false
false
100
.svstyle
- MinMaxStyle_110
+ MinMaxStyle_117
Black
- 5dc64c4e-93d3-4a7a-b3aa-dbf28e454a23
+ 6a2194a9-9d0d-4129-9fdf-15acb9bd4ef4
false
- TimeShiftStyle_111
+ TimeShiftStyle_118
100
.svtss
0
- TimeShiftStyle_111
+ TimeShiftStyle_118
.svstyle
- ChannelStyle_45
+ ChannelStyle_110
true
+
+ .svchannel
+ Channel_100
+
+
+ .svagroup
+ AxisGroup_90
+
+
+
+ -1
+ true
+ d389dcfc-48d5-437f-9e84-ecb0e6279e52
+ false
+ EMG_CH3
+ 12
+
+ df0cc7fa-2902-47a5-9083-76a921cafef5
+
+
+ Black
+ faa015ba-480e-44a0-a562-ffe4a3499972
+ false
+ false
+ false
+ 0.5
+ -0.5
+ Value Axis (1)
+ Y
+ AutoGrowOnly
+ 100
+
+
+
+ -16777216
+ true
+ -16777216
+ 10
+ 1
+ dab963fe-4601-4532-8a34-3979def236a2
+ false
+ 1
+ Axis Style (1)
+ 6
+ false
+ 100
+ false
+ 5
+ .svstyle
+ AxisStyle_94
+ true
+
+
+ .svaxis
+ Value Axis
+
+
+
+ Black
+ ee591730-a1b2-40a6-b460-42291be3ea3c
+ false
+ Marker Container (1)
+ 100
+
+ .svmc
+ MarkerContainer_140
+
+
+
+ -5952982
+ true
+ 4d52423b-58b3-426f-beea-a129722eaef1
+ false
+ EMG_CH3_uV
+ 12
+
- a4b43477-a7f5-45df-ba58-5a1961bbb4e8
+ eda5e08a-a0c1-46d5-a386-55a53fe55cb8
18446744073709551615
Black
- 024fca52-b2d3-4197-9f61-939dbe9da7a3
+ fdbf88c6-8668-49df-9b0d-52bb83c0d115
+ false
+ Y: EMG_CH3_uV
+ 0
+
+
+ 0
+ None
+ 1
+ none
+
+ 1
+
+ 0
+
+
+
+ 0
+
+ 0
+ none
+ (None)
+ 1
+
+
+ 0
+ 1
+
+ UnitOfOne
+
+ 0
+ None
+
+ 0
+ none
+ 1
+
+ none
+
+
+ 1
+ 2
+
+ .svai
+ AcquisitionInterpreter_102
+ Y
+
+
+
+ Black
+ a96610e6-b90f-4cbc-82db-7d658e72d28b
+ false
+ Channel Style (8)
+ 100
+
+
+ true
+
+ Plum
+ 849685034
+ None
+ 73e1039c-bc73-497f-8891-2fc603aff698
+ false
+ 1
+ -5952982
+ 2
+ Auto
+ Series Style (8)
+ Line
+ 100
+ .svstyle
+ SeriesStyle_112
+
+
+
+ Black
+ 6ed21514-7165-4682-a58b-f4ecf335b8a3
+ false
+ Min/Max Style (8)
+ false
+ false
+ 100
+ .svstyle
+ MinMaxStyle_121
+
+
+
+ Black
+ 4f112023-3b8e-49d2-bb7b-2e1c3b43edc7
+ false
+ TimeShiftStyle_122
+ 100
+ .svtss
+ 0
+ TimeShiftStyle_122
+
+
+ .svstyle
+ ChannelStyle_110
+ true
+
+
+ .svchannel
+ Channel_100
+
+
+ .svagroup
+ AxisGroup_90
+
+
+
+ -1
+ true
+ 36e166d2-9cc2-433e-ae19-3e9a2b3d505c
+ false
+ EMG_CH4
+ 13
+
+ df0cc7fa-2902-47a5-9083-76a921cafef5
+
+
+ Black
+ a113db36-a756-4bea-a812-81370dd1872f
+ false
+ false
+ false
+ 0.5
+ -0.5
+ Value Axis (2)
+ Y
+ AutoGrowOnly
+ 100
+
+
+
+ -16777216
+ true
+ -16777216
+ 10
+ 1
+ 72b0de25-971b-4fb7-902c-3b04b7f31353
+ false
+ 1
+ Axis Style (2)
+ 6
+ false
+ 100
+ false
+ 5
+ .svstyle
+ AxisStyle_94
+ true
+
+
+ .svaxis
+ Value Axis
+
+
+
+ Black
+ e86a832b-3974-4cf0-bd6f-9bece1a55e07
+ false
+ Marker Container (2)
+ 100
+
+ .svmc
+ MarkerContainer_144
+
+
+
+ -9728477
+ true
+ a394553f-3d46-4ae7-97c6-26a6ceb4f18e
+ false
+ EMG_CH4_uV
+ 13
+
+
+ 72a5bcb2-9496-4a66-8ac2-c891ae65b624
+ 18446744073709551615
+
+ Black
+ d2d625e7-8d6f-4ebc-b281-679d796b9565
+ false
+ Y: EMG_CH4_uV
+ 0
+
+
+ 0
+ None
+ 1
+ none
+
+ 1
+
+ 0
+
+
+
+ 0
+
+ 0
+ none
+ (None)
+ 1
+
+
+ 0
+ 1
+
+ UnitOfOne
+
+ 0
+ None
+
+ 0
+ none
+ 1
+
+ none
+
+
+ 1
+ 2
+
+ .svai
+ AcquisitionInterpreter_102
+ Y
+
+
+
+ Black
+ b928e9b9-4f9b-4928-8df3-66404fc313e6
+ false
+ Channel Style (9)
+ 100
+
+
+ true
+
+ Plum
+ 845909539
+ None
+ 395c411b-aa90-44d2-a6bf-da3ae8578b7f
+ false
+ 1
+ -9728477
+ 2
+ Auto
+ Series Style (9)
+ Line
+ 100
+ .svstyle
+ SeriesStyle_112
+
+
+
+ Black
+ 5573df74-2422-4c4a-a663-af0c70f96775
+ false
+ Min/Max Style (9)
+ false
+ false
+ 100
+ .svstyle
+ MinMaxStyle_125
+
+
+
+ Black
+ 23066408-d6a6-4db0-bcd9-9f463e216917
+ false
+ TimeShiftStyle_126
+ 100
+ .svtss
+ 0
+ TimeShiftStyle_126
+
+
+ .svstyle
+ ChannelStyle_110
+ true
+
+
+ .svchannel
+ Channel_100
+
+
+ .svagroup
+ AxisGroup_90
+
+
+ .svchart
+ YTChart_68
+
+
+ 0
+ true
+
+ 100000000
+ -986896
+ false
+ -16777216
+ 17812b7c-7d18-4668-ae12-d2633798b279
+ false
+ 00000000-0000-0000-0000-000000000000
+ Motors
+ false
+ 12
+
+
+
+ -1
+ -16777216
+ 0e2f8fdb-0d35-4a87-831b-2f27f87dd8e0
+ false
+ Overview Chart
+ false
+ 100
+ .svochart
+ OverviewChart_210
+
+
+
+ Black
+ 1
+ e955abf1-3c41-481d-a97e-f17b523ff47a
+ false
+ Chart Style
+ false
+ 100
+ true
+
+
+
+ Black
+ 59a9f9a1-489b-4e2a-bdfc-4e5b801c4d30
+ false
+ Chartzoom Style
+ true
+ 100
+ .svstyle
+ ChartZoomStyle_73
+ true
+
+
+
+ 16
+ 16
+
+
+ Black
+ 3900669951
+ All
+ f855faf6-9f42-4c43-9460-dbdadc93389a
+ false
+ Chartmenu Style
+ 100
+ .svstyle
+ 8.25
+ ChartMenuStyle_75
+ 8.25
+ true
+ true
+ true
+
+
+ .svstyle
+ ChartStyle_71
+ true
+
+
+
+ -1
+ true
+ 8504404d-13d8-4ca4-971a-91c01564277c
+ false
+ Motor1
+ 10
+
+
+
+ Black
+ e155f0f3-5dd9-4893-afb8-eb0505c3597c
+ false
+ false
+ false
+ 100000000
+ -0.5
+ Time Axis
+ X
+ MinMax
+ 100
+
+
+
+ -16777216
+ true
+ -16777216
+ 10
+ 1
+ e4926a3e-2aa6-45f6-9346-df6835278dfa
+ false
+ 1
+ Axis Style (3)
+ 6
+ false
+ 100
+ false
+ 5
+ .svstyle
+ AxisStyle_94
+ true
+
+
+ .svaxis
+ Time Axis
+
+
+
+ Black
+ dc877f21-2acb-4f6a-8087-6aa63e6e73f1
+ false
+ false
+ false
+ 0.5
+ -0.5
+ Value Axis (4)
+ Y
+ AutoGrowOnly
+ 100
+
+
+
+ -16777216
+ true
+ -16777216
+ 10
+ 1
+ 50092b7c-e5ab-4cf7-9ad5-5fa3bd6741ed
+ false
+ 1
+ Axis Style (6)
+ 6
+ false
+ 100
+ false
+ 5
+ .svstyle
+ AxisStyle_94
+ true
+
+
+ .svaxis
+ Value Axis
+
+
+
+ Black
+ f9291948-2f2f-441d-a447-d429c75a715e
+ false
+ Marker Container (4)
+ 100
+
+ .svmc
+ MarkerContainer_219
+
+
+
+ -16744448
+ true
+ a766d0f1-376a-4dcc-8bc4-cb5af738e08a
+ false
+ M1_Joint_rel_position
+ 10
+
+
+ 13dad77b-fd32-432c-abcb-0963197b16db
+ 18446744073709551615
+
+ Black
+ bdd9c3ef-24b8-4c8f-be6d-7265291057a4
false
Y: M1_Joint_rel_position
0
@@ -753,28 +2104,82 @@
2
.svai
- AcquisitionInterpreter_41
+ AcquisitionInterpreter_102
Y
+
+
+ Black
+ 1c66bbc3-5b68-40be-93d7-cee4476cb349
+ false
+ Channel Style
+ 100
+
+
+ true
+
+ Plum
+ 838893568
+ None
+ 07fb6a86-ae4e-48b5-ba8c-20abbbbc2be7
+ false
+ 1
+ -16744448
+ 2
+ Auto
+ Series Style
+ Line
+ 100
+ .svstyle
+ SeriesStyle_112
+
+
+
+ Black
+ 14c31970-904c-4dbd-9002-315cde4908a2
+ false
+ Min/Max Style
+ false
+ false
+ 100
+ .svstyle
+ MinMaxStyle_335
+
+
+
+ Black
+ 773aabbb-69cd-4592-9c52-0ed830c81447
+ false
+ TimeShiftStyle_336
+ 100
+ .svtss
+ 0
+ TimeShiftStyle_336
+
+
+ .svstyle
+ ChannelStyle_110
+ true
+
.svchannel
- Channel_39
+ Channel_100
-16776961
true
- e59b8597-82fc-41b5-bcfa-55e69ca4a729
+ eef95923-5e16-4c32-81aa-c741e466628c
false
M1_Desired_pos
11
- 63b92219-8a5d-4088-92fd-615eb88540be
+ cf06dfb5-6728-427c-a868-4f8a80c4ce1b
18446744073709551615
Black
- 2a0b993a-b959-415b-808b-999c3e94058f
+ eb914166-2ee0-40e6-a569-a0777c1829dc
false
Y: M1_Desired_pos
0
@@ -818,13 +2223,13 @@
2
.svai
- AcquisitionInterpreter_41
+ AcquisitionInterpreter_102
Y
Black
- f7ed19dc-5711-48d3-a4ef-f1457bb66f88
+ 93d1600b-0b18-4bf9-a8ef-4e2e8842bff5
false
Channel Style (1)
100
@@ -835,7 +2240,7 @@
Plum
838861055
None
- 3857fc97-dc09-4f2f-bcc2-c4e7dcf8115a
+ 87ca9eb3-488f-47d2-83c5-a49b4dd9c0fe
false
1
-16776961
@@ -845,426 +2250,64 @@
Line
100
.svstyle
- SeriesStyle_55
+ SeriesStyle_112
Black
- d52e915f-a931-40c2-901d-776be09e3198
+ d48e8b25-d184-4887-9e2f-9256c9914107
false
Min/Max Style (1)
false
false
100
.svstyle
- MinMaxStyle_123
+ MinMaxStyle_339
Black
- 1b2a6ec4-f3e1-4303-809d-6587d6f562a4
+ 7882cc81-7422-43db-a055-4e4d93b4002f
false
- TimeShiftStyle_124
+ TimeShiftStyle_340
100
.svtss
0
- TimeShiftStyle_124
+ TimeShiftStyle_340
.svstyle
- ChannelStyle_45
+ ChannelStyle_110
true
.svchannel
- Channel_39
+ Channel_100
.svagroup
- AxisGroup_87
-
-
-
- -1
- -16777216
- 0c9fc0f7-a470-4eb5-9146-bed624ef7ebf
- false
- Overview Chart
- false
- 100
- .svochart
- OverviewChart_93
-
-
-
- Black
- 1
- 7a8c4a11-b4dc-45d9-a65d-e6991c350c1c
- false
- Chart Style
- false
- 100
- true
-
-
-
- Black
- 395d0529-af31-41b1-a783-5be249df34ec
- false
- Chartzoom Style
- true
- 100
- .svstyle
- ChartZoomStyle_95
- true
-
-
-
- 16
- 16
-
-
- Black
- 3900669951
- All
- 3bdec7ca-4512-406a-bf26-4ccc915250da
- false
- Chartmenu Style
- 100
- .svstyle
- 8.25
- ChartMenuStyle_96
- 8.25
- true
- true
- true
-
-
- .svstyle
- ChartStyle_94
- true
-
-
-
- -1
- false
- a03841ce-4568-4934-afe1-c09b3330578c
- false
- Axis Group (1)
- 11
-
- 591ede28-e71e-4531-b31a-947f3b4f6387
-
-
- Black
- 0ee1823d-c265-4bb6-a29f-a977e09f711d
- false
- false
- false
- 0.5
- -0.5
- Value Axis (1)
- Y
- AutoGrowOnly
- 100
-
-
-
- -16777216
- true
- -16777216
- 10
- 1
- 98f07914-226f-44ed-8d08-2c69a5d1c14d
- false
- 1
- Axis Style (2)
- 6
- false
- 100
- false
- 5
- .svstyle
- AxisStyle_49
- true
-
-
- .svaxis
- Value Axis
-
-
-
- Black
- 450253df-ea70-466b-b4f7-3de3e06bb9c1
- false
- Marker Container (1)
- 100
-
- .svmc
- MarkerContainer_128
-
-
-
- -23296
- true
- a13a6f93-a92d-4e95-badb-5020384162d8
- false
- M1_Motor_current_bus
- 10
-
-
- 0d4c4b39-03cd-442e-8061-e06b858e0bdb
- 18446744073709551615
-
- Black
- 963568d4-c6f4-47ad-a663-805eaeefab2c
- false
- Y: M1_Motor_current_bus
- 0
-
-
- 0
- None
- 1
- none
-
- 1
-
- 0
-
-
-
- 0
-
- 0
- none
- (None)
- 1
-
-
- 0
- 1
-
- UnitOfOne
-
- 0
- None
-
- 0
- none
- 1
-
- none
-
-
- 1
- 2
-
- .svai
- AcquisitionInterpreter_41
- Y
-
-
-
- Black
- 45edb3fa-0b8b-4d82-9e3d-ecf9df6c4a14
- false
- Channel Style (2)
- 100
-
-
- true
-
- Plum
- 855614720
- None
- 8483b346-dec1-4160-9d7c-bb20792a21ef
- false
- 1
- -23296
- 2
- Auto
- Series Style (2)
- Line
- 100
- .svstyle
- SeriesStyle_55
-
-
-
- Black
- 0065f09a-41a1-41ac-88c9-9fbd23c9e1f6
- false
- Min/Max Style (2)
- false
- false
- 100
- .svstyle
- MinMaxStyle_139
-
-
-
- Black
- 698b112f-8cbb-4599-b7ea-5b23f7249060
- false
- TimeShiftStyle_140
- 100
- .svtss
- 0
- TimeShiftStyle_140
-
-
- .svstyle
- ChannelStyle_45
- true
-
-
- .svchannel
- Channel_39
-
-
-
- -16711936
- true
- fd236e3d-a687-40b2-8b96-9f2016802046
- false
- M2_Motor_current_bus
- 11
-
-
- 092e4270-4be2-41af-a1d7-8105aff42f22
- 18446744073709551615
-
- Black
- 8e6cb9d6-ea5e-4739-b946-b8f81ae5464c
- false
- Y: M2_Motor_current_bus
- 0
-
-
- 0
- None
- 1
- none
-
- 1
-
- 0
-
-
-
- 0
-
- 0
- none
- (None)
- 1
-
-
- 0
- 1
-
- UnitOfOne
-
- 0
- None
-
- 0
- none
- 1
-
- none
-
-
- 1
- 2
-
- .svai
- AcquisitionInterpreter_41
- Y
-
-
-
- Black
- cd4f5394-05f8-4f90-a04c-c067f9e5b722
- false
- Channel Style (3)
- 100
-
-
- true
-
- Plum
- 838926080
- None
- 48222a0e-75a1-41d3-b5de-c9f53889b1f3
- false
- 1
- -16711936
- 2
- Auto
- Series Style (3)
- Line
- 100
- .svstyle
- SeriesStyle_55
-
-
-
- Black
- e3554a52-78d8-49a4-a908-5793bd7b4ee3
- false
- Min/Max Style (3)
- false
- false
- 100
- .svstyle
- MinMaxStyle_145
-
-
-
- Black
- b4460750-0b4c-4043-9d44-6d5d27d208cb
- false
- TimeShiftStyle_146
- 100
- .svtss
- 0
- TimeShiftStyle_146
-
-
- .svstyle
- ChannelStyle_45
- true
-
-
- .svchannel
- Channel_39
-
-
- .svagroup
- AxisGroup_43
+ AxisGroup_90
-1
true
- 1a225ed8-687b-4590-9acd-14bdc2ea8b90
+ 314a7446-2bc9-4a19-9e30-53d4f8714bad
false
- Axis Group (2)
- 12
+ Motor2
+ 11
- 591ede28-e71e-4531-b31a-947f3b4f6387
+ e155f0f3-5dd9-4893-afb8-eb0505c3597c
Black
- b3b63ec1-1fc6-4b6f-bdba-74b95b76f2af
+ f10345dc-32e3-4fc6-ada9-0cff89b2e4cc
false
false
false
0.5
-0.5
- Value Axis (2)
+ Value Axis (5)
Y
AutoGrowOnly
100
@@ -1276,17 +2319,17 @@
-16777216
10
1
- 784596f9-98da-4f59-9641-e070351e6d2a
+ 33dd9792-cf32-44b1-9f74-4f5bfb0dca93
false
1
- Axis Style (3)
+ Axis Style (7)
6
false
100
false
5
.svstyle
- AxisStyle_49
+ AxisStyle_94
true
@@ -1296,29 +2339,29 @@
Black
- c36874a6-bab1-4d4c-8f1c-d5d0e5e799ab
+ 1e89fdea-70df-45d5-a848-a087a2730264
false
- Marker Container (2)
+ Marker Container (5)
100
.svmc
- MarkerContainer_150
+ MarkerContainer_223
- -14774017
+ -23296
true
- cb3f31dc-17a9-4bd5-b9d8-17b363472bb3
+ 596ff731-aa8b-4068-9d77-d67f834b2432
false
M2_Joint_rel_position
10
- 935b9dda-7837-4cf8-8f56-e1e264fc242b
+ 8d7766a1-e5c2-4084-b1e1-2a1cde8bc625
18446744073709551615
Black
- 75d21276-6138-43f2-85e3-f091aa300dd2
+ 5bf61bb9-1a97-4471-b234-ec6e81f8b603
false
Y: M2_Joint_rel_position
0
@@ -1362,82 +2405,82 @@
2
.svai
- AcquisitionInterpreter_41
+ AcquisitionInterpreter_102
Y
Black
- f3197dd9-c005-4637-b114-68d68db0ff72
+ 51026288-ec0a-4a8d-a453-6fbec7628bfa
false
- Channel Style (4)
+ Channel Style (2)
100
true
Plum
- 840863999
+ 855614720
None
- 25d4241b-50bc-4553-9f35-70298b1e360f
+ 8bd37395-fffc-40f6-8c41-62042ecf6f61
false
1
- -14774017
+ -23296
2
Auto
- Series Style (4)
+ Series Style (2)
Line
100
.svstyle
- SeriesStyle_55
+ SeriesStyle_112
Black
- 6bd2f1e7-cd8e-4e47-bd1b-f49cfd8fe600
+ f7f9aa8d-f6c8-4bad-ba85-165437729081
false
- Min/Max Style (4)
+ Min/Max Style (2)
false
false
100
.svstyle
- MinMaxStyle_157
+ MinMaxStyle_349
Black
- 974ececd-3aac-44ff-bd06-e03aa0359220
+ 3884b24c-ccff-4190-955f-ab219f7bb270
false
- TimeShiftStyle_158
+ TimeShiftStyle_350
100
.svtss
0
- TimeShiftStyle_158
+ TimeShiftStyle_350
.svstyle
- ChannelStyle_45
+ ChannelStyle_110
true
.svchannel
- Channel_39
+ Channel_100
- -65281
+ -16711936
true
- 3795a970-3401-4c13-993c-c544378ec700
+ 6fbecb62-8857-458f-a783-b21935294a0e
false
M2_Desired_pos
11
- 11e44e74-740b-4dd1-a66e-8b08c1ec7464
+ 8b889ab1-8104-4807-8962-50fc84d9d53b
18446744073709551615
Black
- a6d4a794-4da8-4c96-a176-f6466d650ae1
+ daef1cdd-60b8-48bc-99b8-bdb1ee0576e2
false
Y: M2_Desired_pos
0
@@ -1481,13 +2524,314 @@
2
.svai
- AcquisitionInterpreter_41
+ AcquisitionInterpreter_102
Y
Black
- e3a90259-d378-4c6c-93e0-137f94309653
+ 9684f8b2-f618-4493-a919-01a04c6bbd40
+ false
+ Channel Style (3)
+ 100
+
+
+ true
+
+ Plum
+ 838926080
+ None
+ fb81d710-a390-4b4f-8c9c-48c477679d14
+ false
+ 1
+ -16711936
+ 2
+ Auto
+ Series Style (3)
+ Line
+ 100
+ .svstyle
+ SeriesStyle_112
+
+
+
+ Black
+ ca8fab67-5a60-4886-b820-a673c347a604
+ false
+ Min/Max Style (3)
+ false
+ false
+ 100
+ .svstyle
+ MinMaxStyle_353
+
+
+
+ Black
+ eef94eeb-d966-4ec4-b052-fb6ae0512dd4
+ false
+ TimeShiftStyle_354
+ 100
+ .svtss
+ 0
+ TimeShiftStyle_354
+
+
+ .svstyle
+ ChannelStyle_110
+ true
+
+
+ .svchannel
+ Channel_100
+
+
+ .svagroup
+ AxisGroup_90
+
+
+
+ -1
+ true
+ 9f073190-e969-417e-9c0f-cbc99e04cbbf
+ false
+ Motor3
+ 12
+
+ e155f0f3-5dd9-4893-afb8-eb0505c3597c
+
+
+ Black
+ 043e3bbb-2e88-478b-bd05-5c77bb6bdd36
+ false
+ false
+ false
+ 0.5
+ -0.5
+ Value Axis (6)
+ Y
+ AutoGrowOnly
+ 100
+
+
+
+ -16777216
+ true
+ -16777216
+ 10
+ 1
+ c21f62a5-9d18-446b-945a-3ca6db054704
+ false
+ 1
+ Axis Style (8)
+ 6
+ false
+ 100
+ false
+ 5
+ .svstyle
+ AxisStyle_94
+ true
+
+
+ .svaxis
+ Value Axis
+
+
+
+ Black
+ 811877a5-f289-450e-b389-7a8c317885f6
+ false
+ Marker Container (6)
+ 100
+
+ .svmc
+ MarkerContainer_227
+
+
+
+ -14774017
+ true
+ 0799feab-7670-439f-bec2-c8f5ea9b27d2
+ false
+ M3_Joint_rel_position
+ 10
+
+
+ 92af127e-8066-47e6-907d-f3e7f8932f20
+ 18446744073709551615
+
+ Black
+ f577ce41-3c0a-4ae5-a2aa-2985124d7e62
+ false
+ Y: M3_Joint_rel_position
+ 0
+
+
+ 0
+ None
+ 1
+ none
+
+ 1
+
+ 0
+
+
+
+ 0
+
+ 0
+ none
+ (None)
+ 1
+
+
+ 0
+ 1
+
+ UnitOfOne
+
+ 0
+ None
+
+ 0
+ none
+ 1
+
+ none
+
+
+ 1
+ 2
+
+ .svai
+ AcquisitionInterpreter_102
+ Y
+
+
+
+ Black
+ 12000d44-83d1-45de-b57a-f136bb585f07
+ false
+ Channel Style (4)
+ 100
+
+
+ true
+
+ Plum
+ 840863999
+ None
+ f3bb0298-0e73-458f-8710-1ef7c7d45ca9
+ false
+ 1
+ -14774017
+ 2
+ Auto
+ Series Style (4)
+ Line
+ 100
+ .svstyle
+ SeriesStyle_112
+
+
+
+ Black
+ 34cc1d1f-b7de-4df3-89b7-b88926e58c57
+ false
+ Min/Max Style (4)
+ false
+ false
+ 100
+ .svstyle
+ MinMaxStyle_363
+
+
+
+ Black
+ e4e1f736-c91d-42a3-8eef-bc0e47090a33
+ false
+ TimeShiftStyle_364
+ 100
+ .svtss
+ 0
+ TimeShiftStyle_364
+
+
+ .svstyle
+ ChannelStyle_110
+ true
+
+
+ .svchannel
+ Channel_100
+
+
+
+ -65281
+ true
+ 7d9913a5-b5cf-448b-907b-d078c481c7d2
+ false
+ M3_Desired_pos
+ 11
+
+
+ 18d32ea4-6af2-440c-b6ce-6c8e7e4d7815
+ 18446744073709551615
+
+ Black
+ 748488f8-0c2c-4f13-97eb-acbad4d4a580
+ false
+ Y: M3_Desired_pos
+ 0
+
+
+ 0
+ None
+ 1
+ none
+
+ 1
+
+ 0
+
+
+
+ 0
+
+ 0
+ none
+ (None)
+ 1
+
+
+ 0
+ 1
+
+ UnitOfOne
+
+ 0
+ None
+
+ 0
+ none
+ 1
+
+ none
+
+
+ 1
+ 2
+
+ .svai
+ AcquisitionInterpreter_102
+ Y
+
+
+
+ Black
+ 72a65da6-8e7d-47a8-9eef-2201e8b48d3b
false
Channel Style (5)
100
@@ -1498,7 +2842,7 @@
Plum
855572735
None
- 28f7f589-7ab2-4cfa-a8b1-b7e090e91678
+ d28f6d28-df19-4263-acf9-4a219be82e9d
false
1
-65281
@@ -1508,59 +2852,349 @@
Line
100
.svstyle
- SeriesStyle_55
+ SeriesStyle_112
Black
- 861e3ec2-8f6b-4ed7-9c0c-11341f6519e5
+ 91cf12ae-4842-4dc6-ad72-a8858719b143
false
Min/Max Style (5)
false
false
100
.svstyle
- MinMaxStyle_161
+ MinMaxStyle_367
Black
- 38cfe620-ec6f-4f83-920a-177dc3cfd198
+ dc13ef0a-1b4a-4fc8-8fae-c9189df3b60b
false
- TimeShiftStyle_162
+ TimeShiftStyle_368
100
.svtss
0
- TimeShiftStyle_162
+ TimeShiftStyle_368
.svstyle
- ChannelStyle_45
+ ChannelStyle_110
true
.svchannel
- Channel_39
+ Channel_100
.svagroup
- AxisGroup_43
+ AxisGroup_90
+
+
+
+ -1
+ true
+ 062dbe49-e439-45ea-99d9-590fb3f42026
+ false
+ Motor4
+ 13
+
+ e155f0f3-5dd9-4893-afb8-eb0505c3597c
+
+
+ Black
+ 56d5e1eb-5ab8-42c0-befd-1786ad5e1c21
+ false
+ false
+ false
+ 0.5
+ -0.5
+ Value Axis (7)
+ Y
+ AutoGrowOnly
+ 100
+
+
+
+ -16777216
+ true
+ -16777216
+ 10
+ 1
+ fde9d979-19ec-4884-b670-4e67b2d53e31
+ false
+ 1
+ Axis Style (9)
+ 6
+ false
+ 100
+ false
+ 5
+ .svstyle
+ AxisStyle_94
+ true
+
+
+ .svaxis
+ Value Axis
+
+
+
+ Black
+ 1801a822-14f8-4c72-9e9b-ae0b92a11b6f
+ false
+ Marker Container (7)
+ 100
+
+ .svmc
+ MarkerContainer_231
+
+
+
+ -16777088
+ true
+ be4c10b3-ccea-4c0e-87c9-adb35f120a7e
+ false
+ M4_Joint_rel_position
+ 10
+
+
+ 6ac2c5bb-eae6-475a-b849-7e5b7c9c9565
+ 18446744073709551615
+
+ Black
+ ab4a084a-a893-4f30-8867-cc6d616abb88
+ false
+ Y: M4_Joint_rel_position
+ 0
+
+
+ 0
+ None
+ 1
+ none
+
+ 1
+
+ 0
+
+
+
+ 0
+
+ 0
+ none
+ (None)
+ 1
+
+
+ 0
+ 1
+
+ UnitOfOne
+
+ 0
+ None
+
+ 0
+ none
+ 1
+
+ none
+
+
+ 1
+ 2
+
+ .svai
+ AcquisitionInterpreter_102
+ Y
+
+
+
+ Black
+ c9dec784-a6a6-4fd9-85cc-e4ef6605c878
+ false
+ Channel Style (10)
+ 100
+
+
+ true
+
+ Plum
+ 838860928
+ None
+ 3416dbad-b4d7-4032-841d-3209f6809acc
+ false
+ 1
+ -16777088
+ 2
+ Auto
+ Series Style (10)
+ Line
+ 100
+ .svstyle
+ SeriesStyle_112
+
+
+
+ Black
+ 0225f5ab-85ec-474d-864b-877cf3dd3ab0
+ false
+ Min/Max Style (10)
+ false
+ false
+ 100
+ .svstyle
+ MinMaxStyle_377
+
+
+
+ Black
+ 9504455e-e8ce-4a84-8820-5cef38916281
+ false
+ TimeShiftStyle_378
+ 100
+ .svtss
+ 0
+ TimeShiftStyle_378
+
+
+ .svstyle
+ ChannelStyle_110
+ true
+
+
+ .svchannel
+ Channel_100
+
+
+
+ -16181
+ true
+ d1dceadb-5c34-4d23-917e-dd3414d2a3b2
+ false
+ M4_Desired_pos
+ 11
+
+
+ 1e7a9f36-2614-4cf7-b72a-1117927e93e9
+ 18446744073709551615
+
+ Black
+ a8556b2e-5beb-4ef9-bee2-d01c0bf28862
+ false
+ Y: M4_Desired_pos
+ 0
+
+
+ 0
+ None
+ 1
+ none
+
+ 1
+
+ 0
+
+
+
+ 0
+
+ 0
+ none
+ (None)
+ 1
+
+
+ 0
+ 1
+
+ UnitOfOne
+
+ 0
+ None
+
+ 0
+ none
+ 1
+
+ none
+
+
+ 1
+ 2
+
+ .svai
+ AcquisitionInterpreter_102
+ Y
+
+
+
+ Black
+ 548cceba-549d-4845-aec5-45ad76446d2e
+ false
+ Channel Style (11)
+ 100
+
+
+ true
+
+ Plum
+ 855621835
+ None
+ 68a4466e-880e-47f3-949a-4da83571853e
+ false
+ 1
+ -16181
+ 2
+ Auto
+ Series Style (11)
+ Line
+ 100
+ .svstyle
+ SeriesStyle_112
+
+
+
+ Black
+ 4e67866f-8b17-4d40-bf58-7f184859e11d
+ false
+ Min/Max Style (11)
+ false
+ false
+ 100
+ .svstyle
+ MinMaxStyle_381
+
+
+
+ Black
+ e477a0d0-d755-4b7c-af51-004388f050e2
+ false
+ TimeShiftStyle_382
+ 100
+ .svtss
+ 0
+ TimeShiftStyle_382
+
+
+ .svstyle
+ ChannelStyle_110
+ true
+
+
+ .svchannel
+ Channel_100
+
+
+ .svagroup
+ AxisGroup_90
.svchart
- YTChart_86
+ YTChart_68
-
-
- Black
- edd388f8-a158-4cab-b19b-e61383271ec9
- false
- Trigger
- 100
-
- .svtm
- TriggerModule_97
-
.tcscopex
Default