|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- module CTdsPowerLedNotification
- use COperationScenariosVariables
- implicit none
- contains
-
- subroutine Evaluate_PowerLed()
- use CCommon
- implicit none
-
-
- if (DriveType == TopDrive_DriveType) then
- #ifdef OST
- print*, 'Evaluate_PowerLed=TopDrive'
- #endif
-
- !TOPDRIVE-CODE=63
- if (TopDriveTdsPowerState == TdsPower_OFF) then
- call Set_PowerLed(.true.)
- return
- end if
-
- endif
-
-
-
-
-
-
-
-
- if (DriveType == Kelly_DriveType) then
- #ifdef OST
- print*, 'Evaluate_PowerLed=Kelly'
- #endif
-
- endif
-
-
-
-
-
- end subroutine
-
- ! subroutine Subscribe_PowerLed()
- ! implicit none
- ! end subroutine
-
- end module CTdsPowerLedNotification
|