blob: c4e72a1fbb2669d7ae76968206932ae6cbb020cb (
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
|
//------------------------------------------------------------------------------
// <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 virtual HARDWARE_MOTOR_TYPES HARDWARE_MOTOR_TYPES { get; set; }
public virtual HARDWARE_VERSIONS HARDWARE_VERSIONS { get; set; }
}
}
|