mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 06:19:24 +08:00
16 lines
193 B
C
16 lines
193 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);
|
||
|
|
||
|
void rt_os_ready(void);
|
||
|
|
||
|
#endif
|
||
|
|