hal_wdt.c 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * BSD 2-Clause License
  3. * Copyright (c) 2022, LiteEMF
  4. * All rights reserved.
  5. * This software component is licensed by LiteEMF under BSD 2-Clause license,
  6. * the "License"; You may not use this file except in compliance with the
  7. * License. You may obtain a copy of the License at:
  8. * opensource.org/licenses/BSD-2-Clause
  9. *
  10. */
  11. /************************************************************************************************************
  12. ** Description:
  13. ************************************************************************************************************/
  14. #include "hw_config.h"
  15. #if API_WDT_ENABLE
  16. #include "api/api_wdt.h"
  17. /******************************************************************************************************
  18. ** Defined
  19. *******************************************************************************************************/
  20. /*****************************************************************************************************
  21. ** Function
  22. ******************************************************************************************************/
  23. /*******************************************************************
  24. ** Parameters:
  25. ** Returns:
  26. ** Description:
  27. *******************************************************************/
  28. //hal
  29. void hal_wdt_feed(void)
  30. {
  31. }
  32. bool hal_wdt_init(uint32_t ms)
  33. {
  34. UNUSED_PARAMETER(ms);
  35. return false;
  36. }
  37. bool hal_wdt_deinit(void)
  38. {
  39. return false;
  40. }
  41. #endif