mdbsmnglib.XML 46.6 KB
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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>mdbsmnglib</name>
    </assembly>
    <members>
        <member name="T:OMLib.Communication.ModbusInfo.ExceptionCode">
            <summary>
            Exception code(Exception response from the driver)
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ExceptionCode.NOERROR">
            <summary>
            No error
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ExceptionCode.INVALID_FUNCTION">
            <summary>
            The process could not be executed because the function code was invalid.
            <list type="bullet">
            <item><description>The function code is not supported.</description></item>
            <item><description>The sub-function code for diagnosis (08h) is other than 00h.</description></item>
            </list>
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ExceptionCode.INVALID_DATAADDRESS">
            <summary>
            The process could not be executed because the data address was invalid.
            <list type="bullet">
            <item><description>The address is not supported (other than 0000h to 1FFFh).</description></item>
            <item><description>Register address and number of registers are 2000h or more in total.</description></item>
            </list>
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ExceptionCode.INVALID_DATA">
            <summary>
            The process could not be executed because the data was invalid.
            <list type="bullet">
            <item><description>The number of registers is 0 or more than 17.</description></item>
            <item><description>The number of bytes is other than twice the number of registers.</description></item>
            <item><description>The data length is outside the specified range.</description></item>
            </list>
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ExceptionCode.SLAVE_ERROR">
            <summary>
            The process could not be executed because an error occurred at the slave.
            <list type="bullet">
            <item><description>Downloading, initializing or teaching function is in progress using the OPX-2A</description></item>
            <item><description>Downloading or initialization is in progress using the MEXE02</description></item>
            <item><description>Internal processing was in progress. (S-BSY is ON.)</description></item>
            <item><description>An EEPROM error alarm was present.</description></item>
            <item><description>Outside the parameter setting range</description></item>
            <item><description>Command execute disable</description></item>
            </list>
            </summary>
        </member>
        <member name="T:OMLib.Communication.ModbusInfo.FrameInfo">
            <summary>
            Information of the frame
            </summary>
        </member>
        <member name="M:OMLib.Communication.ModbusInfo.FrameInfo.Frame">
            <summary>
            Get the frame.
            </summary>
            <returns>Frame</returns>
        </member>
        <member name="P:OMLib.Communication.ModbusInfo.FrameInfo.SlaveAddress">
            <summary>
            Slave Address
            </summary>
        </member>
        <member name="P:OMLib.Communication.ModbusInfo.FrameInfo.FunctionCode">
            <summary>
            Function Code
            </summary>
        </member>
        <member name="T:OMLib.Communication.ModbusInfo.SendReceiveData">
            <summary>
            Data transmission and reception
            </summary>
        </member>
        <member name="M:OMLib.Communication.ModbusInfo.SendReceiveData.GetError">
            <summary>
            Get the error.
            </summary>
            <returns>Error Code</returns>
        </member>
        <member name="P:OMLib.Communication.ModbusInfo.SendReceiveData.Query">
            <summary>
            Query
            </summary>
        </member>
        <member name="P:OMLib.Communication.ModbusInfo.SendReceiveData.Response">
            <summary>
            Response
            </summary>
        </member>
        <member name="P:OMLib.Communication.ModbusInfo.SendReceiveData.IsError">
            <summary>
            If an error has occurred, return true.
            </summary>
        </member>
        <member name="T:OMLib.Communication.Modbus">
            <summary>
            Represents a modbus resource.
            </summary>
        </member>
        <member name="M:OMLib.Communication.Modbus.SetProduct(OMLib.PRODUCT)">
            <summary>
            Set the product.
            </summary>
            <param name="product">Type of product</param>
        </member>
        <member name="M:OMLib.Communication.Modbus.GetProduct">
            <summary>
            Get the current product setting.
            </summary>
            <returns>product</returns>
        </member>
        <member name="M:OMLib.Communication.Modbus.SendReadHolding(OMLib.Communication.ModbusInfo.SendReceiveData@,System.Byte,System.UInt16,System.UInt16)">
            <summary>
            Run the reading from a holding register(s).
            </summary>
            <param name="response">Store the information of query and response</param>
            <param name="slvadd">Slave Address</param>
            <param name="startaddress">Register address to start reading from</param>
            <param name="number">Number of registers to be read from the starting register address</param>
            <returns>Error code</returns>
        </member>
        <member name="M:OMLib.Communication.Modbus.SendWriteHolding(OMLib.Communication.ModbusInfo.SendReceiveData@,System.Byte,System.UInt16,System.UInt16)">
            <summary>
            Run the writing to a holding register.
            </summary>
            <param name="response">Store the information of query and response</param>
            <param name="slvadd">Slave Address</param>
            <param name="address">Register address to be written</param>
            <param name="value">Value written to the register address</param>
            <returns>Error code</returns>
        </member>
        <member name="M:OMLib.Communication.Modbus.SendDiagnosis(OMLib.Communication.ModbusInfo.SendReceiveData@,System.Byte,System.UInt16)">
            <summary>
            Run the diagnosis.
            </summary>
            <param name="response">Store the information of query and response</param>
            <param name="slvadd">Slave Address</param>
            <param name="data">Arbitrary data</param>
            <returns>Error code</returns>
        </member>
        <member name="M:OMLib.Communication.Modbus.SendWriteMultipleHolding(OMLib.Communication.ModbusInfo.SendReceiveData@,System.Byte,System.UInt16,System.Collections.Generic.IEnumerable{System.UInt16})">
            <summary>
            Run the writing to multiple holding registers.
            </summary>
            <param name="response">Store the information of query and response</param>
            <param name="slvadd">Slave Address</param>
            <param name="startaddress">Register address to be written</param>
            <param name="values">Value written to the register address</param>
            <returns>Error code</returns>
        </member>
        <member name="M:OMLib.Communication.Modbus.PortOpen(System.String,System.Int32,System.IO.Ports.Parity,System.IO.Ports.StopBits)">
            <summary>
            open the serial port.
            </summary>
            <param name="portnum">Port Number</param>
            <param name="baudrate">BaudRate</param>
            <param name="parity">Parity</param>
            <param name="stopbits">StopBits</param>
            <returns>Error Code</returns>
        </member>
        <member name="M:OMLib.Communication.Modbus.PortClose">
            <summary>
            close the serial port.
            </summary>
            <returns>If successful, it returns true</returns>
        </member>
        <member name="M:OMLib.Communication.Modbus.IsPortOpen">
            <summary>
            Gets a value indicating the open or closed status of the Modbus object.
            </summary>
            <returns>true if the serial port is open; otherwise, false. The default is false.</returns>
        </member>
        <member name="M:OMLib.Communication.Modbus.IsBusyCommunication">
            <summary>
            Indicates whether communication
            </summary>
            <returns>Returns true if the communication.</returns>
        </member>
        <member name="M:OMLib.Communication.Modbus.SetReceiveTimeout(System.UInt32)">
            <summary>
            Set the receive timeout.
            </summary>
            <param name="time">time[ms]</param>
        </member>
        <member name="M:OMLib.Communication.Modbus.SetReceiveCompleteTimeout(System.UInt32)">
            <summary>
            Set the receive completion timeout.
            </summary>
            <param name="time">time[ms]</param>
        </member>
        <member name="M:OMLib.Communication.Modbus.MoveAbsolute(System.Byte,System.Int32,System.Int32,System.UInt32,System.UInt32)">
            <summary>
            Move to absolute position
            </summary>
            <param name="axis">Slave Address</param>
            <param name="position">Position</param>
            <param name="velocity">Velocity</param>
            <param name="speedChangeRate">start/speed change rate</param>
            <param name="stopRate">stopping rate</param>
            <returns><see cref="T:OMLib.Communication.ModbusInfo.ErrorCode"/> is returned.</returns>
        </member>
        <member name="M:OMLib.Communication.Modbus.MoveVelocity(System.Byte,System.Int32,System.UInt32,System.UInt32)">
            <summary>
            continuous operation
            </summary>
            <param name="axis">Slave Address</param>
            <param name="velocity">Velocity</param>
            <param name="speedChangeRate">start/speed change rate</param>
            <param name="stopRate">stopping rate</param>
            <returns><see cref="T:OMLib.Communication.ModbusInfo.ErrorCode"/> is returned.</returns>
        </member>
        <member name="M:OMLib.Communication.Modbus.MoveRelative(System.Byte,System.Int32,System.Int32,System.UInt32,System.UInt32)">
            <summary>
            move a specified distance from the actual position
            </summary>
            <param name="axis">Slave Address</param>
            <param name="position">Position</param>
            <param name="velocity">Velocity</param>
            <param name="speedChangeRate">start/speed change rate</param>
            <param name="stopRate">stopping rate</param>
            <returns><see cref="T:OMLib.Communication.ModbusInfo.ErrorCode"/> is returned.</returns>
        </member>
        <member name="M:OMLib.Communication.Modbus.Home(System.Byte)">
            <summary>
            start the Home operation
            </summary>
            <param name="slvAdd">Slave Address</param>
            <returns><see cref="T:OMLib.Communication.ModbusInfo.ErrorCode"/> is returned.</returns>
        </member>
        <member name="M:OMLib.Communication.Modbus.Stop(System.Byte)">
            <summary>
            stop the operation
            </summary>
            <param name="slvAdd">Slave Address</param>
            <returns><see cref="T:OMLib.Communication.ModbusInfo.ErrorCode"/> is returned.</returns>
        </member>
        <member name="M:OMLib.Communication.Modbus.ReadActualPosition(System.Byte,System.Nullable{System.Int32}@)">
            <summary>
            get the Feedback position
            </summary>
            <param name="slvAdd">Slave Address</param>
            <param name="position">Feedback position</param>
            <returns><see cref="T:OMLib.Communication.ModbusInfo.ErrorCode"/> is returned.</returns>
        </member>
        <member name="M:OMLib.Communication.Modbus.ReadCommandPosition(System.Byte,System.Nullable{System.Int32}@)">
            <summary>
            get the command position
            </summary>
            <param name="slvAdd">Slave Address</param>
            <param name="position">Command Position</param>
            <returns><see cref="T:OMLib.Communication.ModbusInfo.ErrorCode"/> is returned.</returns>
        </member>
        <member name="M:OMLib.Communication.Modbus.ReadTargetPosition(System.Byte,System.Nullable{System.Int32}@)">
            <summary>
            get the Target position
            </summary>
            <param name="slvAdd">Slave Address</param>
            <param name="position">Target Position</param>
            <returns><see cref="T:OMLib.Communication.ModbusInfo.ErrorCode"/> is returned.</returns>
        </member>
        <member name="M:OMLib.Communication.Modbus.ReadInternalOutPutIO(System.Byte,OMLib.Products.AZSeries.AzInternalIO@)">
            <summary>
            Read the output I/O (AZ Series)
            </summary>
            <param name="slvAdd">Slave Address</param>
            <param name="outputio">Internal Output I/O</param>
            <returns><see cref="T:OMLib.Communication.ModbusInfo.ErrorCode"/> is returned.</returns>
            <exception cref="T:System.NotSupportedException"></exception>
        </member>
        <member name="M:OMLib.Communication.Modbus.GetAlarm(System.Byte,System.Int32@)">
            <summary>
            Current Alarm
            </summary>
            <param name="slvAdd">Slave Address</param>
            <param name="alarm">Current alarm</param>
            <returns><see cref="T:OMLib.Communication.ModbusInfo.ErrorCode"/> is returned.</returns>
        </member>
        <member name="M:OMLib.Communication.Modbus.AlarmReset(System.Byte)">
            <summary>
            Alarm reset
            </summary>
            <param name="slvAdd">Slave Address</param>
            <returns><see cref="T:OMLib.Communication.ModbusInfo.ErrorCode"/> is returned.</returns>
        </member>
        <member name="M:OMLib.Communication.Modbus.SerchDllPath(System.String,System.String)">
            <summary>
            Adds a directory to the search path used to DLL for the application.
            </summary>
            <param name="x86path">directory of dll(32bit)</param>
            <param name="x64path">directory of dll(64bit)</param>
            <exception cref="T:System.NotSupportedException">Not support architecture that was detected.</exception>
            <exception cref="T:System.DllNotFoundException">The exception that is thrown when a DLL specified in a DLL import cannot be found.</exception>
            <exception cref="T:System.BadImageFormatException">The exception that is thrown when the file image of a dynamic link library (DLL) or an executable program is invalid.</exception>
        </member>
        <member name="M:OMLib.Communication.Modbus.GetArchitecture">
            <summary>
            get the architecture
            </summary>
            <returns>Architecture</returns>
        </member>
        <member name="M:OMLib.Communication.Modbus.#ctor(OMLib.PRODUCT)">
            <summary>
            Constructor
            </summary>
            <param name="product">product</param>
        </member>
        <member name="T:OMLib.Communication.ModbusInfo.NativeStopBits">
            <summary>
            Stop Bits
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.NativeStopBits.One">
            <summary>
            One
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.NativeStopBits.OnePointFive">
            <summary>
            OnePointFive
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.NativeStopBits.Two">
            <summary>
            Two
            </summary>
        </member>
        <member name="T:OMLib.Products.AZSeries.AzInternalIO">
            <summary>
            Out put I/O
            </summary>
        </member>
        <member name="F:OMLib.Products.AZSeries.AzInternalIO.addr_0x0178">
            <summary>
            Value of register address (0x0178)
            </summary>
        </member>
        <member name="F:OMLib.Products.AZSeries.AzInternalIO.addr_0x0179">
            <summary>
            Value of register address (0x0179)
            </summary>
        </member>
        <member name="F:OMLib.Products.AZSeries.AzInternalIO.addr_0x017A">
            <summary>
            Value of register address (0x017A)
            </summary>
        </member>
        <member name="F:OMLib.Products.AZSeries.AzInternalIO.addr_0x017B">
            <summary>
            Value of register address (0x017B)
            </summary>
        </member>
        <member name="F:OMLib.Products.AZSeries.AzInternalIO.addr_0x017C">
            <summary>
            Value of register address (0x017C)
            </summary>
        </member>
        <member name="F:OMLib.Products.AZSeries.AzInternalIO.addr_0x017D">
            <summary>
            Value of register address (0x017D)
            </summary>
        </member>
        <member name="F:OMLib.Products.AZSeries.AzInternalIO.addr_0x017E">
            <summary>
            Value of register address (0x017E)
            </summary>
        </member>
        <member name="F:OMLib.Products.AZSeries.AzInternalIO.addr_0x017F">
            <summary>
            Value of register address (0x017F)
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.MAREA">
            <summary>
            Output when the motor is within the area specified by each operation data.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.TIM">
            <summary>
            Output once every 7.2° rotation of the motor output shaft based on command position.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.RND_ZERO">
            <summary>
            Output if the motor is in the origin which is on the wrap coordinates when the warp function is enabled.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.ZSG">
            <summary>
            Turns ON every one round based on the feedback position.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.RV_SLS">
            <summary>
            Output when reached to the software limit in CCW direction.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.FW_SLS">
            <summary>
            Output when reached to the software limit in CW direction.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.RND_OVF">
            <summary>
            The output is inverted when exceeding the wrap setting range.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.ORGN_STLD">
            <summary>
            Output if mechanical home which is for the product is set at the time of shipping.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.PRST_STLD">
            <summary>
            Output when mechanical home positions set.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.PRST_DIS">
            <summary>
            Turns ON when the PRESET input is needed again after
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.ELPRST_MON">
            <summary>
            Output when electrical home coordinate is enabled.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.ABSPEN">
            <summary>
            Output when the coordinate is determined
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.HOME_END">
            <summary>
            Output when the high speed return-tohome operation or return-to-home operation completed, or when the position preset is executed.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.AUTO_CD">
            <summary>
            Output when the auto current cutback function is actuated.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.CRNT">
            <summary>
            Output when the motor is excited.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.VA">
            <summary>
            Output when the operating speed reached to the target speed.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.TLC">
            <summary>
            Output when the output torque reached to the upper limitation.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.IN_POS">
            <summary>
            Output when the positioning operation is completed.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.ETO_MON">
            <summary>
            Output when the ETO condition is present.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.SYS_BSY">
            <summary>
            Output when the driver is in internal processing status.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.INFO">
            <summary>
            Output the information of the driver.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.MOVE">
            <summary>
            Output when the motor is in operation.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.PLS_RDY">
            <summary>
            Output when the pulse input is enabled.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.READY">
            <summary>
            Output when the driver is ready to operate.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.SYS_RDY">
            <summary>
            Output when the control power is turned on.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.ALM_B">
            <summary>
            Output the alarm of the driver.(normally close)
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.ALM_A">
            <summary>
            Output the alarm of the driver.(normally open)
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.CONST_OFF">
            <summary>
            Not output.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.USR_OUT1">
            <summary>
            Output the logical conjunction or disjunction of 2 types of output signals.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.USR_OUT0">
            <summary>
            Output the logical conjunction or disjunction of 2 types of output signals.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.PLS_OUTR">
            <summary>
            Output when the pulse request function is activated.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.MON_OUT">
            <summary>
            Output the information corresponding to the I/O position output function.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.HWTOIN_MON">
            <summary>
            Output when either one of the HWTO1 and HWTO2 turned OFF.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.EDM">
            <summary>
            Output when both the HWTO1 and 2 inputs are OFF.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.RG">
            <summary>
            Output when the product is in regenerative condition.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.MBC">
            <summary>
            Output when electromagnetic brake is locked.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.MPS">
            <summary>
            Output when the main power is turned ON.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.AREA7">
            <summary>
            Output when the motor is within the AREA.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.AREA6">
            <summary>
            Output when the motor is within the AREA.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.AREA5">
            <summary>
            Output when the motor is within the AREA.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.AREA4">
            <summary>
            Output when the motor is within the AREA.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.AREA3">
            <summary>
            Output when the motor is within the AREA.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.AREA2">
            <summary>
            Output when the motor is within the AREA.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.AREA1">
            <summary>
            Output when the motor is within the AREA.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.AREA0">
            <summary>
            Output when the motor is within the AREA.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.D_END7">
            <summary>
            Output when the specified operation data is completed.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.D_END6">
            <summary>
            Output when the specified operation data is completed.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.D_END5">
            <summary>
            Output when the specified operation data is completed.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.D_END4">
            <summary>
            Output when the specified operation data is completed.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.D_END3">
            <summary>
            Output when the specified operation data is completed.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.D_END2">
            <summary>
            Output when the specified operation data is completed.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.D_END1">
            <summary>
            Output when the specified operation data is completed.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.D_END0">
            <summary>
            Output when the specified operation data is completed.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.M_ACT7">
            <summary>
            Output the conditions of the M0 to M7 inputs corresponding to the current operation No. during operation.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.M_ACT6">
            <summary>
            Output the conditions of the M0 to M7 inputs corresponding to the current operation No. during operation.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.M_ACT5">
            <summary>
            Output the conditions of the M0 to M7 inputs corresponding to the current operation No. during operation.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.M_ACT4">
            <summary>
            Output the conditions of the M0 to M7 inputs corresponding to the current operation No. during operation.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.M_ACT3">
            <summary>
            Output the conditions of the M0 to M7 inputs corresponding to the current operation No. during operation.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.M_ACT2">
            <summary>
            Output the conditions of the M0 to M7 inputs corresponding to the current operation No. during operation.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.M_ACT1">
            <summary>
            Output the conditions of the M0 to M7 inputs corresponding to the current operation No. during operation.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.M_ACT0">
            <summary>
            Output the conditions of the M0 to M7 inputs corresponding to the current operation No. during operation.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.M_CHG">
            <summary>
            The output inverts when operation data No. is transited.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.DCMD_FULL">
            <summary>
            Output when data is written in the buffer area of the direct data operation.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.DCMD_RDY">
            <summary>
            Output when the direct data operation is ready.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.PLS_LOST">
            <summary>
            Output if pulse is input when the pulse input function is disabled.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.NEXT_LAT">
            <summary>
            Output when the operation was transited by the NEXT input.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.JUMP1_LAT">
            <summary>
            Output when high event trigger is detected
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.JUMP0_LAT">
            <summary>
            Output when low event trigger is detected
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.DELAY_BSY">
            <summary>
            Output when the driver is in stop waiting condition (delay, dwell).
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.SEQ_BSY">
            <summary>
            Output during the stored data operation.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.PAUSE_BSY">
            <summary>
            Output at pause status.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.OPE_BSY">
            <summary>
            Output when the driver is in internal processing status.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.SPD_LMTD">
            <summary>
            Output when the speed is limited.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.CRNT_LMTD">
            <summary>
            Output when the current is limited.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.INFO_RBT">
            <summary>
            Reboot was requested.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.INFO_CFG">
            <summary>
            Configuration was requested.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.INFO_IOTEST">
            <summary>
            <list type="bullet">
            <item>
            <description>“I/O test” of the MEXE02 has been performed.</description>
            </item>
            <item>
            <description>Configuration was executed.</description>
            </item>
            </list>
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.INFO_DSLMTD">
            <summary>
            <list type="bullet">
            <item>
            <description>“Teaching remote operation“ of the MEXE02 was activated.</description>
            </item>
            <item>
            <description>Configuration was executed.</description>
            </item>
            </list>
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.INFO_ODO">
            <summary>
            Odometer of the motor exceeded the value set in the “Odometer information (INFO-ODO)” parameter.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.INFO_TRIP">
            <summary>
            Tripmeter of the motor exceeded the value set in the “Tripmeter information (INFO-TRIP)” parameter.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.INFO_CULD1">
            <summary>
            Cumulative load exceeded the value set in the “Cumulative load information (INFO-CULD1)” parameter.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.INFO_CULD0">
            <summary>
            Cumulative load exceeded the value set in the “Cumulative load information (INFO-CULD0)” parameter.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.INFO_RV_OT">
            <summary>
            Negative software limit was detected, or either one of the RV-LS input and RV-BLK input turned ON.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.INFO_FW_OT">
            <summary>
            Positive software limit was detected, or either one of the FW-LS input and FWBLK input turned ON.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.INFO_NET_E">
            <summary>
            RS-485 communication error was detected.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.INFO_RND_E">
            <summary>
            The resolution and "wrap setting range" parameter was inconsistent.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.INFO_EGR_E">
            <summary>
            Resolution set in the “electronic gear” parameter was out of specification.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.INFO_PR_REQ">
            <summary>
            Preset has been executed by position preset or return-to-home operation.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.INFO_ZHOME">
            <summary>
            Turn on the ZHOME input without the setting the coordinate(ABSPEN output is OFF)
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.INFO_START">
            <summary>
            <list type="bullet">
            <item>
            <description>Start input of prohibited direction has been turned ON.</description>
            </item>
            <item>
            <description>When the operation cannot be executed, start signal has been turned ON. Example) the READY output is OFF</description>
            </item>
            </list>
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.INFO_SPD">
            <summary>
            The detected motor speed exceeded the value set in the “speed information” parameter.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.INFO_OLTIME">
            <summary>
            A load exceeding the maximum torque was applied for the time set in parameter for the overload time information or longer.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.INFO_UVOLT">
            <summary>
            <list type="bullet">
            <item>
            <description>The power supply voltage dropped from the value set in the parameter for undervoltage.</description>
            </item>
            <item>
            <description>The main power was cut off momentarily or the voltage became low.</description>
            </item>
            </list>
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.INFO_OVOLT">
            <summary>
            <list type="bullet">
            <item>
            <description>The voltage of the power supply exceeded the value set in the "over voltage information" parameter.</description>
            </item>
            <item>
            <description>A large inertial load was stopped abruptly or vertical operation was performed.</description>
            </item>
            </list>
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.INFO_MTRTMP">
            <summary>
            Detected encoder temperature exceeded the value set in the “motor temperature information” parameter.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.INFO_DRVTMP">
            <summary>
            Driver internal temperature exceeded the value set in the “driver temperature information” parameter.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.INFO_POSERR">
            <summary>
            Position deviation between the command position and feedback position exceeds the value set in the “overflow rotation information”.
            </summary>
        </member>
        <member name="P:OMLib.Products.AZSeries.AzInternalIO.INFO_USRIO">
            <summary>
            The I/O set in the “INFO-B0 output selection” parameter turns ON.
            </summary>
        </member>
        <member name="T:OMLib.Communication.ModbusInfo.ErrorCode">
            <summary>
            Error Code.
            Each function of the return value.
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.ERROR_NONE">
            <summary>
            Error is not.
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.ERROR_UNKNOWN">
            <summary>
            Undefined error.
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.ERROR_FRAMELENGTH">
            <summary>
            Frame length is abnormal.
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.ERROR_DIFFERENT_SLAVEADDRESS">
            <summary>
            Slave address is different.
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.ERROR_UNKNOWN_FUNCTIONCODE">
            <summary>
            Unknown Function code.
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.ERROR_CRC">
            <summary>
            Anomaly of the CRC.
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.ERROR_RESPONSEFRAME">
            <summary>
            Response frame is abnormal.
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.ERROR_TIMEOUT_SEND">
            <summary>
            Time-out of the transmission occurs.
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.ERROR_TIMEOUT_RECEIVE">
            <summary>
            Time-out of the reception occurs. 
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.ERROR_FAIL_INITSERIALTHREAD">
            <summary>
            An error occurred when initializing the thread of serial communication.
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.ERROR_OCCUREXCEPTION_SERIAL">
            <summary>
            An error occurred when processing of serial communication.
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.ERROR_SERIALPORTNAME">
            <summary>
            Port name is abnormal.
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.ERROR_PORTHANDLE">
            <summary>
            Failed to get the port handle.
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.ERROR_COMMUNICATIONBUFFER">
            <summary>
            Failed to set send and receive buffer.
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.ERROR_CLEARCOMMUNICATIONBUFFER">
            <summary>
            Failed to clear send and receive buffer.
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.ERROR_SETSERIALSTATE">
            <summary>
            Failed to set the status.
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.ERROR_SETSERIALTIMEOUT">
            <summary>
            Failed to set the time-out.
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.ERROR_OCCUREXCEPTION_SERIALINIT">
            <summary>
            An error occurred when initialize the serial communication.
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.ERROR_SERIALPORTNOTOPEN">
            <summary>
            Port is not open.
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.ERROR_RECEIVETHREAD">
            <summary>
            An error occurred when running the thread of the reception.
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.ERROR_FAIL_GETSEMAPHORE">
            <summary>
            Failed to get the semaphore.
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.ERROR_NOT_OPERATION">
            <summary>
            The driver side is not in operation possible state.
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.ERROR_INPROGRESS_COMMAND">
            <summary>
            Other command is running.
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.ERROR_INPROGRESS_SERIALPORT">
            <summary>
            During communication.
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.ERROR_UNKNOWN_EXCEPTIONCODE">
            <summary>
            Unknown Exception Code
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.ERROR_BROADCAST">
            <summary>
            Can not be broadcast.
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.DRIVER_EXCEPTION_INVALIDFUNCTION">
            <summary>
            Exception response : Exception Code = 0x01
            <list type="bullet">
            <item><description>The process could not be executed because the function code was invalid.</description></item>
            </list>
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.DRIVER_EXCEPTION_INVALIDDATAADDR">
            <summary>
            Exception response : Exception Code = 0x02
            <list type="bullet">
            <item><description>The process could not be executed because the data address was invalid.</description></item>
            </list>
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.DRIVER_EXCEPTION_INVALIDDATA">
            <summary>
            Exception response : Exception Code = 0x03
            <list type="bullet">
            <item><description>The process could not be executed because the data was invalid.</description></item>
            </list>
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.ErrorCode.DRIVER_EXCEPTION_SLAVEERROR">
            <summary>
            Exception response : Exception Code = 0x04
            <list type="bullet">
            <item><description>Communication with user I/F is in progress.</description></item>
            <item><description>Non-volatile memory processing is in progress.</description></item>
            <item><description>Outside the parameter setting range.</description></item>
            <item><description>Command execute disable.</description></item>
            </list>
            </summary>
        </member>
        <member name="F:OMLib.Communication.ModbusInfo.NativeMethod.DllName">
            <summary>
            *.dll of name
            </summary>
        </member>
        <member name="T:OMLib.PRODUCT">
            <summary>
            Supported products by Modbus Library.
            </summary>
        </member>
        <member name="F:OMLib.PRODUCT.UnKnown">
            <summary>
            Unknown product
            </summary>
        </member>
        <member name="F:OMLib.PRODUCT.AZ">
            <summary>
            AZ series
            </summary>
        </member>
        <member name="F:OMLib.PRODUCT.AR">
            <summary>
            AR series
            </summary>
        </member>
    </members>
</doc>