board.h 555 B

12345678910111213141516171819202122232425
  1. /*
  2. * Copyright (c) 2006-2021, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2009-09-22 Bernard add board.h to this bsp
  9. * 2011-03-04 lgnq add board.h to FM3 bsp
  10. */
  11. #ifndef __BOARD_H__
  12. #define __BOARD_H__
  13. //Internal SRAM memory size[Kbytes] <8-64>
  14. //MB9BF500 : 32
  15. //MB9BF504 : 32
  16. //MB9BF505 : 48
  17. //MB9BF506 : 64
  18. #define FM3_SRAM_SIZE 32
  19. #define FM3_SRAM_END (0x1FFFC000 + FM3_SRAM_SIZE * 1024)
  20. void rt_hw_board_init(void);
  21. #endif