common.h 313 B

12345678910111213141516171819
  1. /**
  2. * @file uart.h
  3. * @author chipsea
  4. * @brief
  5. * @version 0.1
  6. * @date 2020-11-30
  7. * @copyright Copyright (c) 2020, CHIPSEA Co., Ltd.
  8. * @note
  9. */
  10. #ifndef __COMMON_H__
  11. #define __COMMON_H__
  12. extern uint8 g_largeHeap[];
  13. void hard_fault(void);
  14. uint32_t osal_memory_statics(uint32 memTotalSize);
  15. #endif