mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-15 07:39:33 +08:00
14 lines
168 B
C
14 lines
168 B
C
#ifndef _BOARD_H_
|
|
#define _BOARD_H_
|
|
|
|
#include <rtthread.h>
|
|
|
|
#include "nrf.h"
|
|
|
|
#define CHIP_SRAM_END (0x20000000 + 64*1024)
|
|
|
|
void rt_hw_board_init(void);
|
|
|
|
#endif
|
|
|