38 lines
863 B
Markdown
38 lines
863 B
Markdown
|
### Q3 PLC:
|
||
|
***
|
||
|
* Modified FC8 - Seg. 6:
|
||
|
|
||
|
![[Pasted image 20240502095740.png|350]]
|
||
|
|
||
|
Changed comments on the "ToQ1_D".ToHenkel.SignalExchange.Labeller.di15 to `Flow Selection - 1=Old Labeler, 2=New PE Labeler, 0=Flow error`
|
||
|
|
||
|
|
||
|
## Q1 PLC:
|
||
|
***
|
||
|
|
||
|
Changed comments on:
|
||
|
* `"FromQ3_D".ToHenkel.SignalExchange.Labeller.di15` : to "Flow Selection - 1=Old Labeler, 2=New PE Labeler, 0=Flow error"
|
||
|
* `"ComSV".TL22_WriteToSv.ToHenkel.SignalExchange.Labeller.di15` : to "Flow Selection - 1=Old Labeler, 2=New PE Labeler, 0=Flow error"
|
||
|
|
||
|
|
||
|
No need to change the logic because: on FC13 - Net 13:
|
||
|
|
||
|
```pascal
|
||
|
...
|
||
|
"ComSV".TL22_WriteToSv.ToHenkel.SignalExchange.Labeller :=
|
||
|
"FromQ3_D".ToHenkel.SignalExchange.Labeller;
|
||
|
|
||
|
...
|
||
|
```
|
||
|
|
||
|
Then this is used on the FC7 - Net 15:
|
||
|
|
||
|
```pascal
|
||
|
...
|
||
|
#ToHenkel := "ComSV".TL22_WriteToSv.ToHenkel;
|
||
|
...
|
||
|
```
|
||
|
|
||
|
So the data from Q3 goes to the Prosoft on Q1
|
||
|
|