Files
Shi.Ji e31d3560bb 添加 MX-PD-盘古 项目文件
将 MX-PD-盘古 - new 目录下的所有文件添加到主仓库
2026-05-18 11:43:09 +08:00

25 lines
1017 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace MainShell.Hardware.Acs
{
public sealed class AcsHomeSettingAdress
{
private const int AxisIndexedArrayLength = 32;
public const string PA_HomeModeName = "PA_HomeMode";
public const string PA_HomeVelName = "PA_HomeVel";
public const string PA_HomeOrderName = "PA_HomeOrder";
public AcsHomeSettingAdress()
{
PA_HomeMode = AcsAddressDefinition.CreateInt32Symbol(PA_HomeModeName, AxisIndexedArrayLength, žé¶æ¨¡å¼<C3A5>数组,按轴å<C2B4>·ç´¢å¼•ã€?");
PA_HomeVel = AcsAddressDefinition.CreateDoubleSymbol(PA_HomeVelName, AxisIndexedArrayLength, žé¶é€Ÿåº¦æ•°ç»„,按轴å<C2B4>·ç´¢å¼•ã€?");
PA_HomeOrder = AcsAddressDefinition.CreateInt32Symbol(PA_HomeOrderName, AxisIndexedArrayLength, žé¶é¡ºåº<C3A5>数组,按轴å<C2B4>·ç´¢å¼•ã€?");
}
public AcsAddressDefinition PA_HomeMode { get; }
public AcsAddressDefinition PA_HomeVel { get; }
public AcsAddressDefinition PA_HomeOrder { get; }
}
}