00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00035
00036
00037 #include "globals.h"
00038
00039
00040
00043 const ec_code_msg_t soe_error_codes[] = {
00044 {0x1001, "No IDN"},
00045 {0x1009, "Invalid access to element 1"},
00046 {0x2001, "No name"},
00047 {0x2002, "Name transmission too short"},
00048 {0x2003, "Name transmission too long"},
00049 {0x2004, "Name cannot be changed, read only"},
00050 {0x2005, "Name is write protected at this time"},
00051 {0x3002, "Attribute transmission too short"},
00052 {0x3003, "Attribute transmission too long"},
00053 {0x3004, "Attribute cannot be changed, read only"},
00054 {0x3005, "Attribute is write protected at this time"},
00055 {0x4001, "No unit"},
00056 {0x4002, "Unit transmission too short"},
00057 {0x4003, "Unit transmission too long"},
00058 {0x4004, "Unit cannot be changed, read only"},
00059 {0x4005, "Unit is write proteced at this time"},
00060 {0x5001, "No minimum input value"},
00061 {0x5002, "Minimum input value transmission too short"},
00062 {0x5003, "Minimum input value transmission too long"},
00063 {0x5004, "Minimum input value cannot be changed, read only"},
00064 {0x5005, "Minimum input value is write protected at this time"},
00065 {0x6001, "No maximum input value"},
00066 {0x6002, "Maximum input value transmission too short"},
00067 {0x6003, "Maximum input value transmission too long"},
00068 {0x6004, "Maximum input value cannot be changed, read only"},
00069 {0x6005, "Maximum input value is write protected at this time"},
00070 {0x7002, "Operation data value transmission too short"},
00071 {0x7003, "Operation data value transmission too long"},
00072 {0x7004, "Operation data value cannot be changed, read only"},
00073 {0x7005, "Operation data value is write protected at this time"},
00074 {0x7006, "Operation data value is smaller than the minimum input value"},
00075 {0x7007, "Operation data value is greater than the minimum input value"},
00076 {0x7008, "Invalid operation data"},
00077 {0x7009, "Operation data is write protected by a password"},
00078 {0x700A, "Operation data is write protected"},
00079 {0x700B, "Invalid indirect addressing"},
00080 {0x700C, "Operation data is write protected due to other settings"},
00081 {0x700D, "Reserved"},
00082 {0x7010, "Procedure command already active"},
00083 {0x7011, "Procedure command not interruptible"},
00084 {0x7012, "Procedure command is at this time not executable"},
00085 {0x7013, "Procedure command not executable"},
00086 {0x7014, "No data state"},
00087 {0x8001, "No default value"},
00088 {0x8002, "Default value transmission too long"},
00089 {0x8004, "Default value cannot be changed, read only"},
00090 {0x800A, "Invalid drive number"},
00091 {0x800B, "General error"},
00092 {0x800C, "No element addressed"},
00093 {}
00094 };
00095
00096