iot_boardled_xradio.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * Copyright (c) 2021 Huawei Device Co., Ltd.
  3. * Licensed under the Apache License, Version 2.0 (the "License");
  4. * you may not use this file except in compliance with the License.
  5. * You may obtain a copy of the License at
  6. *
  7. * http://www.apache.org/licenses/LICENSE-2.0
  8. *
  9. * Unless required by applicable law or agreed to in writing, software
  10. * distributed under the License is distributed on an "AS IS" BASIS,
  11. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. * See the License for the specific language governing permissions and
  13. * limitations under the License.
  14. */
  15. #ifndef __IOT_BOARDLED_H__
  16. #define __IOT_BOARDLED_H__
  17. typedef enum {
  18. LED_FLASH_FAST_PLUGS,
  19. LED_FLASH_FAST,
  20. LED_FLASH_NORMAL,
  21. LED_FLASH_SLOW,
  22. LED_FLASH_SLOW_PLUGS,
  23. LED_FLASH_MAX
  24. }LED_FLASH_MODE;
  25. /**
  26. * @brief use this function to change the flash cycle;
  27. * @param flashHz indicates the flash frequency
  28. * @return Returns 0 success while others failed
  29. */
  30. int LedFlashFrequencySet(LED_FLASH_MODE mode);
  31. /**
  32. * @brief use this function to kill the flash task
  33. * @return Returns 0 success while others failed
  34. */
  35. int LedFlashTaskDeinit(void);
  36. /**
  37. * @brief Initialize the LED task
  38. */
  39. void LedFlashTaskStart(void);
  40. #endif /* __IOT_BOARDLED_H__ */