hal_mem.c 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. #include "utils/mem/emf_mem.h"
  16. /******************************************************************************************************
  17. ** Defined
  18. *******************************************************************************************************/
  19. /*****************************************************************************************************
  20. ** Function
  21. ******************************************************************************************************/
  22. /*******************************************************************
  23. ** Parameters:
  24. ** Returns:
  25. ** Description:
  26. *******************************************************************/
  27. void* hal_malloc(uint32_t size)
  28. {
  29. UNUSED_PARAMETER(size);
  30. return NULL;
  31. }
  32. /*******************************************************************
  33. ** Parameters:
  34. ** Returns:
  35. ** Description:
  36. *******************************************************************/
  37. void hal_free(void* p)
  38. {
  39. UNUSED_PARAMETER(p);
  40. }
  41. /*******************************************************************
  42. ** Parameters:
  43. ** Returns:
  44. ** Description:
  45. *******************************************************************/
  46. void hal_mem_stats(void)
  47. {
  48. }