application.c 527 B

1234567891011121314151617181920212223242526
  1. /*
  2. * File : app.c
  3. * This file is part of RT-Thread RTOS
  4. * COPYRIGHT (C) 2006, RT-Thread Development Team
  5. *
  6. * The license and distribution terms for this file may be
  7. * found in the file LICENSE in this distribution or at
  8. * http://openlab.rt-thread.com/license/LICENSE
  9. *
  10. * Change Logs:
  11. * Date Author Notes
  12. * 2006-10-08 Bernard the first version
  13. */
  14. /**
  15. * @addtogroup wh44b0
  16. */
  17. /** @{ */
  18. /* application start function */
  19. int rt_application_init()
  20. {
  21. return 0; /* empty */
  22. }
  23. /** @} */