home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / s / spinctrl / !SpinCtrl / !Help next >
Text File  |  1995-03-21  |  6KB  |  171 lines

  1. Instructions for !SpinCtrl by Andrew Sellors (v1.01)
  2.  
  3. *****************************************************************************
  4. * NOTE:                                                                     *
  5. * !SpinCtrl is FreeWare.                                                    *
  6. * This means that you may freely copy and distribute it, provided that it   *
  7. * is complete with all original files, and that you do not sell it.         *
  8. * PD libraries may charge a nominal fee for the cost of duplication,        *
  9. * postage etc.                                                              *
  10. * In no circumstances shall the author be liable for any damage, loss of    *
  11. * profits, time or data or any indirect or consequential loss rising out of *
  12. * the use of this software or inability to use this software.               *
  13. *****************************************************************************
  14.  
  15. Contents:
  16. ---------
  17.  
  18. Aims
  19. Pros and Cons of spindown
  20. Compatibility
  21. Operation
  22. "ADFS Spindown Control" window
  23. Setting the 3D bit
  24. Contacting the author
  25.  
  26. ********************************************************************************
  27.  
  28. Aims:
  29. -----
  30.  
  31. This program allows the configuration and control of the power management
  32. facilities provided by ADFS for IDE hard drives:
  33.  
  34.    Immediate operation of drive spindown/spinup.
  35.  
  36.    Setting of the drive spindown delay time.
  37.  
  38. ********************************************************************************
  39.  
  40. Pros and Cons of spindown:
  41. --------------------------
  42.  
  43. Pros:
  44.      Quieter operation.
  45.      No wear takes place when drive is stationary.
  46.      Less power consumption when stationary (important for portables).
  47.  
  48. Cons:
  49.      Delay as drive spins up when accessed after being stationary.
  50.      Possible greater stress on motor as is spins up offsets advantages of less
  51.        wear when stationary if motor stops and starts very often.
  52.      
  53. ********************************************************************************
  54.  
  55. Compatibility:
  56. --------------
  57.  
  58. This program is for RISC OS 3 only and only with machines with IDE ADFS hard
  59. drives.
  60. It has been tested on a Risc PC with the standard 210Mb IDE hard drive.
  61.  
  62. NOTE: Some IDE drives do not support motor spindown. Unpredictable results may
  63.       occur when setting the spindown for these drives.
  64.  
  65. ********************************************************************************
  66.  
  67. Operation:
  68. ----------
  69.  
  70. When the !SpinCtrl icon is double-clicked, it installs itself on the icon bar.
  71.  
  72. Clicking on the iconbar icon with Select opens up the "ADFS Spindown Control"
  73. window (see later). If the computer does not have any ADFS hard drives or the
  74. hard drives are not ADFS IDE ones then an error message is reported and the
  75. window is not shown.
  76.  
  77. ********************************************************************************
  78.  
  79. "ADFS Spindown Control" window:
  80. -------------------------------
  81.  
  82. This window provides control over ADFS's power-management facilities for IDE 
  83. hard drives.
  84.  
  85. "Immediate" group:
  86.  
  87. The top left icon in this group shows the drive that the options apply to, by
  88. default this is drive 4 (the first hard drive).
  89. The drive can be changed by clicking on the up and down arrows to the right of
  90. the drive name.
  91.  
  92. The icon below the current drive shows whether this particular drive is spinning
  93. or not.
  94. This icon is updated when ever the drive spins up or down.
  95.  
  96. Clicking on "Spin Down Now" will cause the current drive to immediately spin down.
  97.  
  98. Clicking on "Spin Up Now" will cause the current drive to immediately spin up.
  99.  
  100.  
  101. "Autospindown" group:
  102.  
  103. This group allows the autospindown delay time to be configured.
  104. This delay is the amount of time that the drive waits after being last accessed
  105. before spinning down.
  106.  
  107. When the window is displayed, the delay icon shows the currently configured
  108. delay time or "Off" if autospindown is turned off.
  109.  
  110. Clicking on the up and down arrows by the delay time changes the setting shown.
  111.  
  112. By clicking on "Change" the delay setting shown is applied and stored.
  113. Any changes made to the delay time only take affect when "Change" is clicked upon.
  114.  
  115. Clicking on "Read" refreshes the delay time shown with that currently used by
  116. the computer.
  117.  
  118. ********************************************************************************
  119.  
  120. Setting the 3D bit:
  121. -------------------
  122.  
  123. If you want to use the 3D windows in this program (and the handful of others
  124. that support it) then you need to set the 3D bit in the CMOS RAM. In RISC OS
  125. there is no *configure command to change it so you can either:
  126.  
  127.    Use !DeskCtrl (another program I have written, well worth getting and
  128.                   hopefully released soon on the Acorn User coverdisc)
  129.  
  130.    OR
  131.  
  132.    By cutting out the following BASIC program and running it.
  133.    Note: this program toggles the bit, so if its off and you run it twice then
  134.          it is still off!
  135.  
  136.     10REM Toggle state of '3D look' bit in CMOS
  137.     20REM Read byte
  138.     30SYS "OS_Byte",161,140 TO ,,byte%
  139.     40REM EOR byte with mask for bit 0
  140.     50byte% = byte% EOR 1
  141.     60REM Write byte back again
  142.     70SYS "OS_Byte",162,140,byte%
  143.     80END
  144.  
  145.     OR
  146.  
  147.     If you have a RiscPC then it will probably be on, otherwise you will have
  148.     to then turn off "2D window tools" in the "Window Manager" part of
  149.     !Configure.
  150.     
  151. ********************************************************************************
  152.  
  153. Contacting the author
  154. --------------------
  155.  
  156. I, Andrew Sellors, can be contacted either at
  157.    57 Boundaries Road
  158.    Feltham
  159.    Middlesex
  160.    TW13 5DR
  161.  
  162. Or via Internet email at
  163.    k946949@king.ac.uk
  164.  
  165. Any feedback from users (bugs reports, requests for new features, praise,
  166. money etc.) is gladly received. 
  167.  
  168.  
  169.  
  170.  
  171.