hal_log.c 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. ** Description:
  12. ************************************************************************************************************/
  13. #include "api/api_log.h"
  14. /******************************************************************************************************
  15. ** Defined
  16. *******************************************************************************************************/
  17. /******************************************************************************************************
  18. ** public Parameters
  19. *******************************************************************************************************/
  20. /******************************************************************************************************
  21. ** static Parameters
  22. *******************************************************************************************************/
  23. /*****************************************************************************************************
  24. ** static Function
  25. ******************************************************************************************************/
  26. /*****************************************************************************************************
  27. ** Function
  28. ******************************************************************************************************/
  29. /*******************************************************************
  30. ** Parameters:
  31. ** Returns: true: used hal dump, false: do not used hal dump
  32. ** Description:
  33. *******************************************************************/
  34. bool hal_dump(void const *buf, uint16_t len)
  35. {
  36. UNUSED_PARAMETER(buf);
  37. UNUSED_PARAMETER(len);
  38. return false;
  39. }