LAPTOP-SNT8I5JK\Boounion
2025-07-11 2de4eb139c0cc595db761fedd822549384822fc9
SourceCode/Bond/Servo/CEqModeStep.cpp
@@ -19,11 +19,12 @@
   {
      CReadStep::getAttributeVector(attrubutes);
      unsigned int weight = 31;
      std::string strTemp;
      attrubutes.addAttribute(new CAttribute("Mode",
         std::to_string(m_nMode).c_str(), getModeDescription(strTemp).c_str()));
         std::to_string(m_nMode).c_str(), getModeDescription(strTemp).c_str(), weight++));
      attrubutes.addAttribute(new CAttribute("Mode Dev",
         std::to_string(m_nModeDev).c_str(), ""));
         ("W" + CToolUnits::toHexString(m_nModeDev, strTemp)).c_str(), "", weight++));
   }
   int CEqModeStep::onReadData()
@@ -31,7 +32,7 @@
      CReadStep::onReadData();
      DWordContainer dc;
      if (0 != m_pCclink->ReadDWordData(m_station, DeviceType::W, m_nModeDev, 1, dc)) {
      if (0 != m_pCclink->ReadDWordDataEx(m_station, DeviceType::W, m_nModeDev, 1, dc)) {
         return -2;
      }
      if (dc.size() < 1) {