config.h 437 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (c) 2006-2020, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2020-08-06 whik first version
  9. */
  10. #ifndef __CONFIG_H__
  11. #define __CONFIG_H__
  12. #include "mss_gpio.h"
  13. #include "mss_uart.h"
  14. #include <rthw.h>
  15. #include <rtthread.h>
  16. void sw0_isr(void *args);
  17. void sw1_isr(void *args);
  18. void boardInit(void);
  19. void sayHello(void);
  20. #endif