IODefinition.cs 532 Bytes
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace FLY.Simulation
{
    public class IODefinition
    {
        public const int IN_ORG = 2;
        public const int IN_MINLIMIT = 3;
        public const int IN_MAXLIMIT = 4;
        public const int IN_FORW = 7;
        public const int IN_BACKW = 8;
        public const int IN_RENZIJIA_0 = 9;
        public const int IN_RENZIJIA_1 = 10;
        public const int IN_RSENSOR = 11;
        public const int IN_VSENSOR = 12;
    }
}