1
0

application.c 493 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://www.rt-thread.org/license/LICENSE
  9. *
  10. * Change Logs:
  11. * Date Author Notes
  12. * 2006-06-05 Bernard the first version
  13. */
  14. /**
  15. * @addtogroup sam7s
  16. */
  17. /*@{*/
  18. #include <rtthread.h>
  19. int rt_application_init()
  20. {
  21. return 0;
  22. }
  23. /*@}*/