blob: 19ecda1c1a571b7fedaf38dc051ea5e42511c9f6 (
plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Tango PMR Generator
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated. Do not modify!
// </auto-generated>
//------------------------------------------------------------------------------
syntax = "proto3";
import "HardwareMotorType.proto";
package Tango.PMR.Hardware;
option java_package = "com.twine.tango.pmr.hardware";
message HardwareMotor
{
HardwareMotorType HardwareMotorType = 1;
int32 MinFrequency = 2;
int32 MaxFrequency = 3;
int32 SetMicroStep = 4;
int32 MicroStep = 5;
double MaxChangeSlope = 6;
double HighLengthMicroSecond = 7;
bool SpeedMaster = 8;
int32 PulsePerRound = 9;
double PulleyRadius = 10;
int32 ConfigWord = 11;
bool DirectionThreadWize = 12;
int32 KvalHold = 13;
int32 KvalRun = 14;
int32 KvalAcc = 15;
int32 KvalDec = 16;
int32 OverCurrentThreshold = 17;
int32 StallThreshold = 18;
int32 ThermalCompensationFactor = 19;
bool LowSpeedOptimization = 20;
int32 StSlp = 21;
int32 IntSpd = 22;
int32 FnSlpAcc = 23;
int32 FnSlpDec = 24;
}
|