board.h 542 B

123456789101112131415161718192021222324
  1. /*
  2. * File : board.h
  3. * This file is part of RT-Thread RTOS
  4. *
  5. * The license and distribution terms for this file may be
  6. * found in the file LICENSE in this distribution or at
  7. * http://www.rt-thread.org/license/LICENSE
  8. *
  9. * Change Logs:
  10. * Date Author Notes
  11. * 2017-12-12 Bluebear233 first implementation
  12. */
  13. #ifndef __BOARD_H__
  14. #define __BOARD_H__
  15. // <o> Internal SRAM memory size[Kbytes] <8-64>
  16. #define SRAM_SIZE 64
  17. #define SRAM_END (0x20000000 + SRAM_SIZE * 1024)
  18. #endif /* BOARD_H_ */