1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
using System;
using System.Text;
using System.Linq;
using System.Drawing;
using System.Diagnostics;
using System.Windows.Forms;
using System.Threading;
using System.Threading.Tasks;
using System.Collections.Generic;
using Tango.PMR.Stubs;
using Tango.Stubs;
Int32 F1_SCREW_ROTENC_lsb = 0x100 ; // Value of the lsb of the QEI register
Int32 F1_SCREW_ROTENC_msb = 0x102 ; // 10bits Value of the Msb of the QEI register, 1bit Direction of movement, 5bits Reserved
Int32 F1_SCREW_ROTENC_index = 0x104 ; // value of index counter
Int32 F1_RSPARE_ROTENC_lsb = 0x110 ; // Value of the lsb of the QEI register
Int32 F1_RSPARE_ROTENC_msb = 0x112 ; // 10bits Value of the Msb of the QEI register, 1bit Direction of movement, 5bits Reserved
Int32 F1_RSPARE_ROTENC_index = 0x114 ; // value of index counter
Int32 F1_LSPARE1_ROTENC_lsb = 0x120 ; // Value of the lsb of the QEI register
Int32 F1_LSPARE1_ROTENC_msb = 0x122 ; // 10bits Value of the Msb of the QEI register, 1bit Direction of movement, 5bits Reserved
Int32 F1_LSPARE1_ROTENC_index = 0x124 ; // value of index counter
Int32 F1_RSPEEDSENS_ROTENC_lsb = 0x130 ; // Value of the lsb of the QEI register
Int32 F1_RSPEEDSENS_ROTENC_msb = 0x132 ; // 10bits Value of the Msb of the QEI register, 1bit Direction of movement, 5bits Reserved
Int32 F1_RSPEEDSENS_ROTENC_index = 0x134 ; // value of index counter
Int32 F1_LSPARE2_ROTENC_lsb = 0x140 ; // Value of the lsb of the QEI register
Int32 F1_LSPARE2_ROTENC_msb = 0x142 ; // 10bits Value of the Msb of the QEI register, 1bit Direction of movement, 5bits Reserved
Int32 F1_LSPARE2_ROTENC_index = 0x144 ; // value of index counter
Int32 F1_DRYER_LOADARM_ROTENC_lsb = 0x150 ; // Value of the lsb of the QEI register
Int32 F1_DRYER_LOADARM_ROTENC_msb = 0x152 ; // 10bits Value of the Msb of the QEI register, 1bit Direction of movement, 5bits Reserved
Int32 F1_DRYER_LOADARM_ROTENC_index = 0x154 ; // value of index counter
Int32 F3_SPARE1_ROTENC_lsb = 0x100 ; // Value of the lsb of the QEI register
Int32 F3_SPARE1_ROTENC_msb = 0x102 ; // 10bits Value of the Msb of the QEI register, 1bit Direction of movement, 5bits Reserved
Int32 F3_SPARE1_ROTENC_index = 0x104 ; // value of index counter
Int32 F3_RSPARE_ROTENC_lsb = 0x110 ; // Value of the lsb of the QEI register
Int32 F3_RSPARE_ROTENC_msb = 0x112 ; // 10bits Value of the Msb of the QEI register, 1bit Direction of movement, 5bits Reserved
Int32 F3_RSPARE_ROTENC_index = 0x114 ; // value of index counter
|