hello.c 175 B

123456789
  1. #include <rtthread.h>
  2. #include <finsh.h>
  3. int hello_func(int argc, char** argv)
  4. {
  5. rt_kprintf("Hello RT-Thread!\n");
  6. return 0;
  7. }
  8. MSH_CMD_EXPORT(hello_func, say hello);