mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-24 14:17:22 +08:00
9 lines
129 B
C
9 lines
129 B
C
|
#include <rtthread.h>
|
||
|
#include <fal.h>
|
||
|
|
||
|
int fal_init_auto(void)
|
||
|
{
|
||
|
return fal_init();
|
||
|
}
|
||
|
INIT_COMPONENT_EXPORT(fal_init_auto);
|