mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-10-18 18:34:20 +08:00

This patch only updated the groups defined in documentation/0.doxygen. Other groups will be moved into documentation/0.doxygen and updated at that time. Signed-off-by: Chen Wang <unicorn_wang@outlook.com>
20 lines
499 B
C
20 lines
499 B
C
/*
|
|
* This file is only used for doxygen document generation.
|
|
*/
|
|
|
|
/**
|
|
* @ingroup group_system_init
|
|
*
|
|
* This function will initialize user application.
|
|
*
|
|
* This function will be invoked when system initialization and system scheduler
|
|
* has not started. User can allocate memory, create thread, semaphore etc. However,
|
|
* user shall not suspend 'current' thread.
|
|
*/
|
|
void rt_application_init();
|
|
|
|
/**
|
|
* @ingroup group_system_init
|
|
*/
|
|
void rt_system_heap_init(void* begin_addr, void* end_addr);
|