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