Simulation Core
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 
 
 

48 рядки
897 B

  1. module CTdsPowerLedNotification
  2. use COperationScenariosVariables
  3. implicit none
  4. contains
  5. subroutine Evaluate_PowerLed()
  6. use CCommon
  7. implicit none
  8. if (DriveType == TopDrive_DriveType) then
  9. #ifdef OST
  10. print*, 'Evaluate_PowerLed=TopDrive'
  11. #endif
  12. !TOPDRIVE-CODE=63
  13. if (TopDriveTdsPowerState == TdsPower_OFF) then
  14. call Set_PowerLed(.true.)
  15. return
  16. end if
  17. endif
  18. if (DriveType == Kelly_DriveType) then
  19. #ifdef OST
  20. print*, 'Evaluate_PowerLed=Kelly'
  21. #endif
  22. endif
  23. end subroutine
  24. ! subroutine Subscribe_PowerLed()
  25. ! implicit none
  26. ! end subroutine
  27. end module CTdsPowerLedNotification