board.h 398 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (c) 2006-2021, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. */
  7. #ifndef __BOARD_H__
  8. #define __BOARD_H__
  9. // <o> Internal SRAM memory size[Kbytes] <16 or 32>
  10. // <i>Default: 16
  11. #define NRF_SRAM_BEGIN (0x20000000)
  12. #define NRF_SRAM_SIZE (16 * 1024)
  13. #define NRF_SRAM_END (NRF_SRAM_BEGIN + NRF_SRAM_SIZE)
  14. //#endif
  15. void rt_hw_board_init(void);
  16. #endif