mrDarker
2025-10-22 e8a27bb203fe2aff70390a5eca002d7438da9b0f
SourceCode/Bond/Servo/CPageCassetteCtrlCmd.cpp
@@ -90,7 +90,9 @@
{
   ASSERT(m_pEquipment != nullptr);
   ASSERT(m_pEquipment->getID() == EQ_ID_LOADPORT1
      || m_pEquipment->getID() == EQ_ID_LOADPORT2);
      || m_pEquipment->getID() == EQ_ID_LOADPORT2
      || m_pEquipment->getID() == EQ_ID_LOADPORT3
      || m_pEquipment->getID() == EQ_ID_LOADPORT4);
   SERVO::CLoadPort* pLoadPort = (SERVO::CLoadPort*)m_pEquipment;
   short cmd = 0;
@@ -112,5 +114,14 @@
   pLoadPort->sendCassetteCtrlCmd(cmd, &jobExistence[0], jobExistenceSize, slotProcess,
      jobCount, pJobDataA);
      jobCount, pJobDataA, [&](int code) -> int {
         if (code == WOK) {
            LOGI("sendCassetteCtrlCmd 成功.");
         }
         else {
            LOGE("sendCassetteCtrlCmd 失败.");
         }
         return 0;
      });
}