blob: 992493cbc497ae4929ed0e701990b920a6d6ef4c (
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
|
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Tango.DAL.Remote.DB
{
using System;
using System.Collections.Generic;
public partial class HARDWARE_MOTORS
{
public int ID { get; set; }
public string GUID { get; set; }
public System.DateTime LAST_UPDATED { get; set; }
public string HARDWARE_MOTOR_TYPE_GUID { get; set; }
public string HARDWARE_VERSION_GUID { get; set; }
public int MIN_FREQUENCY { get; set; }
public int MAX_FREQUENCY { get; set; }
public int SET_MICRO_STEP { get; set; }
public int MICRO_STEP { get; set; }
public double MAX_CHANGE_SLOPE { get; set; }
public double HIGH_LENGTH_MICRO_SECOND { get; set; }
public bool SPEED_MASTER { get; set; }
public int PULSE_PER_ROUND { get; set; }
public double PULLEY_RADIUS { get; set; }
public int CONFIG_WORD { get; set; }
public bool DIRECTION_THREAD_WIZE { get; set; }
public int KVAL_HOLD { get; set; }
public int KVAL_RUN { get; set; }
public int KVAL_ACC { get; set; }
public int KVAL_DEC { get; set; }
public int OVER_CURRENT_THRESHOLD { get; set; }
public int STALL_THRESHOLD { get; set; }
public int THERMAL_COMPENSATION_FACTOR { get; set; }
public bool LOW_SPEED_OPTIMIZATION { get; set; }
public int ST_SLP { get; set; }
public int INT_SPD { get; set; }
public int FN_SLP_ACC { get; set; }
public int FN_SLP_DEC { get; set; }
public int FS_SPD { get; set; }
public int GATE_CFG_1 { get; set; }
public int GATE_CFG_2 { get; set; }
public int T_VAL_HOLD { get; set; }
public int T_VAL_RUN { get; set; }
public int T_VAL_ACC { get; set; }
public int T_VAL_DEC { get; set; }
public int T_FAST { get; set; }
public int T_ON_MIN { get; set; }
public int T_OFF_MIN { get; set; }
public bool ACTIVE { get; set; }
public int P01_CONFIG_WORD { get; set; }
public virtual HARDWARE_MOTOR_TYPES HARDWARE_MOTOR_TYPES { get; set; }
public virtual HARDWARE_VERSIONS HARDWARE_VERSIONS { get; set; }
}
}
|