sysLed.h
上传用户:dqzhongke1
上传日期:2022-06-26
资源大小:667k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* sysLed.h - system-dependent LED driver Header File */
  2. /*
  3.  * Copyright (c) 2005 Wind River Systems, Inc.
  4.  *
  5.  * The right to copy, distribute, modify or otherwise make use
  6.  * of this software may be licensed only pursuant to the terms
  7.  * of an applicable Wind River license agreement.
  8.  */
  9. /*
  10. modification history
  11. --------------------
  12. 01a,11aug05,kds  adapted for wrSbc8548 from wrSbc834x (rev 01a)
  13. */
  14. #ifndef  __INCsysLedh
  15. #define  __INCsysLedh
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. /* Defines */
  20. /* LED Character display */
  21. #define LED_REG_BASE      ALPHA_LED_BASE_ADRS 
  22. #define LED_REG(x)        (*(volatile UINT8 *) (LED_REG_BASE + ((x) << 3)))
  23. /* Prototypes */
  24. #ifndef _ASMLANGUAGE
  25. #if defined(__STDC__) || defined(__cplusplus)
  26. IMPORT void sysLedOn(void);
  27. IMPORT void sysLedOff(void);
  28. #else
  29. IMPORT void sysLedOn();
  30. IMPORT void sysLedOff();
  31. #endif  /* __STDC__ */
  32. #endif /* _ASMLANGUAGE */
  33. #ifdef __cplusplus
  34. }
  35. #endif
  36. #endif   /* __INCsysLedh  */