| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- /* ========================================================================
- * [PROJECT] SIR
- * [MODULE] LED
- * [TITLE] LED control header file
- * [FILE] led.h
- * [VSN] 1.0
- * [CREATED] 1 augustus 2003
- * [LASTCHNGD] 23 augustus 2003
- * [COPYRIGHT] Copyright (C) STREAMIT BV 2010
- * [PURPOSE] LED control routines for SIR
- * ======================================================================== */
- /*-------------------------------------------------------------------------*/
- /* global defines */
- /*-------------------------------------------------------------------------*/
- #define LED_OFF 0
- #define LED_ON 1
- #define LED_POWER_ON 2
- #define LED_POWER_OFF 3
- #define LED_TOGGLE 4
- #define LED_FLASH_ON 5
- #define LED_FLASH_OFF 6
- /*-------------------------------------------------------------------------*/
- /* typedefs & structs */
- /*-------------------------------------------------------------------------*/
- /*-------------------------------------------------------------------------*/
- /* export global routines (interface) */
- /*-------------------------------------------------------------------------*/
- void LedInit(void);
- void LedControl(u_char);
- u_char LedGetStatus(void);
- /* ÍÍÍÍ End Of File ÍÍÍÍÍÍÍÍ ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ */
|