LAPTOP-SNT8I5JK\Boounion
2025-05-13 2d69213b1b41b5b039e5dc6f6b7c55d53fd03037
SourceCode/Bond/Servo/CLoadPort.cpp
@@ -181,21 +181,22 @@
   {
      __super::getAttributeVector(attrubutes);
      unsigned int weight = 101;
      std::string strTemp;
      attrubutes.addAttribute(new CAttribute("Index",
         std::to_string(m_nIndex).c_str(), ""));
         std::to_string(m_nIndex).c_str(), "", weight++));
      attrubutes.addAttribute(new CAttribute("Type",
         getPortTypeDescription(m_nType, strTemp).c_str(), ""));
         getPortTypeDescription(m_nType, strTemp).c_str(), "", weight++));
      attrubutes.addAttribute(new CAttribute("Mode",
         getPortModeDescription(m_nMode, strTemp).c_str(), ""));
         getPortModeDescription(m_nMode, strTemp).c_str(), "", weight++));
      attrubutes.addAttribute(new CAttribute("CassetteType",
         getPortCassetteTypeDescription(m_nCassetteType, strTemp).c_str(), ""));
         getPortCassetteTypeDescription(m_nCassetteType, strTemp).c_str(), "", weight++));
      attrubutes.addAttribute(new CAttribute("TransferMode",
         getPortTransferModeDescription(m_nTransferMode, strTemp).c_str(), ""));
         getPortTransferModeDescription(m_nTransferMode, strTemp).c_str(), "", weight++));
      attrubutes.addAttribute(new CAttribute("Enable",
         m_bEnable ? "Eanble" : "Disable", ""));
         m_bEnable ? "Eanble" : "Disable", "", weight++));
      attrubutes.addAttribute(new CAttribute("Auto Change",
         m_bAutoChangeEnable ? "Eanble" : "Disable", ""));
         m_bAutoChangeEnable ? "Eanble" : "Disable", "", weight++));
   }
   int CLoadPort::recvIntent(CPin* pPin, CIntent* pIntent)