Skip to content

Commit

Permalink
Fix devices subtypes manual
Browse files Browse the repository at this point in the history
  • Loading branch information
KirillGutyrchik committed Oct 12, 2023
1 parent ca95552 commit c83123f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/user_manual/ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -824,8 +824,8 @@ M_REV_FREQ_2 | Мотор с реверсом (*отдельный*) с упра
M_REV_2_ERROR | Мотор с реверсом (*отдельный*). Отдельный сигнал аварии.
M_REV_FREQ_2_ERROR | Мотор с реверсом с управлением частотой вращения. Реверс включается отдельно. Отдельный сигнал ошибки.
M_ATV | Мотор, управляемый частотным преобразователем Altivar. Связь с частотным преобразователем по Ethernet. Реверс и аварии опциональны.
M_ATV_LINEAR | Аналогично M_ATV, только есть параметры для расчета линейной скорости.
M_VIRT | Виртуальный мотор.
M_ATV_LINEAR | Аналогично M_ATV, только есть параметры для расчета линейной скорости.
FQT | Счетчик.
FQT_F | Счетчик с расходом.
FQT_VIRT | Виртуальный счетчик (*без привязки к модулям*).
Expand Down
2 changes: 1 addition & 1 deletion src/Device/IODevices/GS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public override string SetSubType(string subType)

default:
errStr = string.Format("\"{0}\" - неверный тип" +
" (пустая строка, GS, GS_VIRT).\n",
" (пустая строка, GS, GS_VIRT, GS_INVERSE).\n",
Name);
break;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Device/IODevices/TE.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public override string SetSubType(string subType)

default:
errStr = string.Format("\"{0}\" - неверный тип" +
" (TE, TE_IOLINK, TE_VIRT).\n", Name);
" (TE, TE_IOLINK, TE_VIRT, TE_ANALOG).\n", Name);
break;
}

Expand Down
2 changes: 1 addition & 1 deletion src/Device/IODevices/WT.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public override string SetSubType(string subType)

default:
errStr = string.Format("\"{0}\" - неверный тип" +
" (WT, WT_RS232, WT_VIRT).\n", Name);
" (WT, WT_RS232, WT_VIRT, WT_ETH).\n", Name);
break;
}

Expand Down

0 comments on commit c83123f

Please sign in to comment.