board.c 307 B

1234567891011121314151617
  1. /*
  2. * Copyright (c) 2006-2022, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2023-02-21 GuEe-GUI the first version
  9. */
  10. #include <setup.h>
  11. #include <board.h>
  12. void rt_hw_board_init(void)
  13. {
  14. rt_hw_common_setup();
  15. }