led.h 327 B

1234567891011121314151617181920212223242526
  1. /*
  2. * led.h
  3. *
  4. * Created on: 2020. 8. 3.
  5. * Author: parkyj
  6. */
  7. #ifndef LED_H_
  8. #define LED_H_
  9. #include "main.h"
  10. extern volatile uint32_t LED_TimerCnt;
  11. extern void Boot_LED_Toggle();
  12. extern uint32_t LedTimerCnt_Get();
  13. extern void LedTimerCnt_Set(uint32_t val);
  14. #define LED_TOGGLE_CNT_REF 500
  15. #endif /* LED_H_ */