example_hello.c 181 B

123456789101112
  1. #include <rtthread.h>
  2. #include <finsh.h>
  3. #include <hello.h>
  4. int hello_test(int argc, char** argv)
  5. {
  6. hello_func();
  7. return 0;
  8. }
  9. MSH_CMD_EXPORT(hello_test, hello API test);