config.h 336 B

12345678910111213141516
  1. #ifndef __INIT_H__
  2. #define __INIT_H__
  3. #include "mss_gpio.h"
  4. #include "mss_uart.h"
  5. #include <rthw.h>
  6. #include <rtthread.h>
  7. void boardInit(void);
  8. void MSS_UART_polled_tx_byte(mss_uart_instance_t *this_uart, const uint8_t byte);
  9. void rt_hw_console_output(const char *str);
  10. char rt_hw_console_getchar(void);
  11. void sayHello(void);
  12. #endif