drv_led.h 284 B

123456789101112
  1. #ifndef __DRV_LED_H
  2. #define __DRV_LED_H
  3. /* Clock Control Unit register bits */
  4. #define CCU_CLK_CFG_RUN (1 << 0)
  5. #define CCU_CLK_CFG_AUTO (1 << 1)
  6. #define CCU_CLK_STAT_RUN (1 << 0)
  7. #define LED_DEVICE_CTRL 0x81 /*LED control command*/
  8. int rt_led_hw_init(void);
  9. #endif