add hello module
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@593 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
parent
4791db6296
commit
c416348020
|
@ -0,0 +1,8 @@
|
||||||
|
Import('env')
|
||||||
|
|
||||||
|
src = ('hello.c')
|
||||||
|
|
||||||
|
obj = env.Object(src)
|
||||||
|
|
||||||
|
Return('obj')
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
#include <rtthread.h>
|
||||||
|
|
||||||
|
void hello()
|
||||||
|
{
|
||||||
|
rt_kprintf("Hello RT-Thread\n");
|
||||||
|
}
|
Loading…
Reference in New Issue