board.h 569 B

12345678910111213141516171819202122232425
  1. /*
  2. * File : board.h
  3. * This file is part of RT-Thread RTOS
  4. * COPYRIGHT (C) 2009, RT-Thread Development Team
  5. *
  6. * The license and distribution terms for this file may be
  7. * found in the file LICENSE in this distribution or at
  8. * http://www.rt-thread.org/license/LICENSE
  9. *
  10. */
  11. #ifndef __BOARD_H__
  12. #define __BOARD_H__
  13. // <o> Internal SRAM memory size[Kbytes] <16 or 32>
  14. // <i>Default: 16
  15. #define NRF_SRAM_BEGIN (0x20000000)
  16. #define NRF_SRAM_SIZE (16 * 1024)
  17. #define NRF_SRAM_END (NRF_SRAM_BEGIN + NRF_SRAM_SIZE)
  18. //#endif
  19. void rt_hw_board_init(void);
  20. #endif