【优化】在代码中移除 rt_system_object_init/rt_system_tick_init 的调用。

This commit is contained in:
guozhanxin
2020-11-23 11:39:38 +08:00
parent ad8d95b1c4
commit a22decb71b
38 changed files with 2 additions and 229 deletions
-11
View File
@@ -24,17 +24,6 @@
static rt_tick_t rt_tick = 0;
#endif
/**
* This function will initialize system tick and set it to zero.
* @ingroup SystemInit
*
* @deprecated since 1.1.0, this function does not need to be invoked
* in the system initialization.
*/
void rt_system_tick_init(void)
{
}
/**
* @addtogroup Clock
*/
-12
View File
@@ -191,18 +191,6 @@ void rt_object_put_sethook(void (*hook)(struct rt_object *object))
/**@}*/
#endif
/**
* @ingroup SystemInit
*
* This function will initialize system object management.
*
* @deprecated since 0.3.0, this function does not need to be invoked
* in the system initialization.
*/
void rt_system_object_init(void)
{
}
/**
* @addtogroup KernelObject
*/