LAPTOP-SNT8I5JK\Boounion
2025-06-13 f6e82f09bb6fb4727da61366c195cb99f3474e49
SourceCode/Bond/Servo/CPagePortProperty.cpp
@@ -57,7 +57,7 @@
   CComboBox* pComboBox;
   std::string strTemp;
   ((CButton*)GetDlgItem(IDC_CHECK_ENABLE))->SetCheck(m_pPort->isEnable() ? BST_CHECKED : BST_UNCHECKED);
   pComboBox = (CComboBox*)GetDlgItem(IDC_COMBO_PORT_TYPE);
   for (int i = 1; i <= 7; i++) {
      pComboBox->InsertString(i - 1, SERVO::CLoadPort::getPortTypeDescription((SERVO::PortType)i, strTemp).c_str());
@@ -69,7 +69,7 @@
   pComboBox = (CComboBox*)GetDlgItem(IDC_COMBO_PORT_MODE);
   for (int i = 0; i <= 5; i++) {
      pComboBox->InsertString(i - 1, SERVO::CLoadPort::getPortModeDescription((SERVO::PortMode)i, strTemp).c_str());
      pComboBox->InsertString(i, SERVO::CLoadPort::getPortModeDescription((SERVO::PortMode)i, strTemp).c_str());
   }
   int portMode = (int)m_pPort->getPortMode();
   if (0 <= portMode && portMode <= 5) {