mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-26 21:47:25 +08:00
16 lines
244 B
C
16 lines
244 B
C
|
/*
|
||
|
* components_init.h
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef __COMPONENTS_INIT_H__
|
||
|
#define __COMPONENTS_INIT_H__
|
||
|
|
||
|
/**
|
||
|
* Initializes components in RT-Thread
|
||
|
* notes: this function must be invoked in thread
|
||
|
*/
|
||
|
void rt_components_init(void);
|
||
|
|
||
|
#endif
|