mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-15 17:29:23 +08:00
d74a78795d
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1921 bbd45198-f89e-11dd-88c7-29a3b14d5316
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
|