systeminit.h 497 B

12345678910111213141516171819
  1. /*
  2. * This file is only used for doxygen document generation.
  3. */
  4. /**
  5. * @ingroup group_SystemInit
  6. *
  7. * This function will initialize user application.
  8. *
  9. * This function will be invoked when system initialization and system scheduler
  10. * has not started. User can allocate memory, create thread, semaphore etc. However,
  11. * user shall not suspend 'current' thread.
  12. */
  13. void rt_application_init();
  14. /**
  15. * @ingroup group_SystemInit
  16. */
  17. void rt_system_heap_init(void* begin_addr, void* end_addr);