Subversion Repositories pentevo

Rev

Rev 219 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. #ifndef __ATX_H__
  2. #define __ATX_H__
  3.  
  4. /** Counter for atx power off delay. */
  5. extern volatile UWORD atx_counter;
  6.  
  7. /** Wait for ATX power button on. */
  8. void wait_for_atx_power(void);
  9.  
  10. /**
  11.  * Check for atx power off switch.
  12.  * @return 0 - if atx power off
  13.  *         >0 - if atx power on
  14.  */
  15. UBYTE atx_power_task(void);
  16.  
  17. #endif //__ATX_H__
  18.