|
|
há 4 meses atrás | |
|---|---|---|
| .github | há 3 anos atrás | |
| components | há 5 anos atrás | |
| integration | há 5 anos atrás | |
| rtt_adapter | há 4 meses atrás | |
| templete_project | há 2 anos atrás | |
| Kconfig | há 4 anos atrás | |
| README.md | há 2 anos atrás | |
| Sconscript | há 2 anos atrás |
<a href="https://github.com/supperthomas/nrf5x_sdk/stargazers"><img src="https://img.shields.io/github/stars/supperthomas/nrf5x_sdk?style=flat-square&logo=GitHub"></a>
<a href="https://github.com/supperthomas/nrf5x_sdk/network/members"><img src="https://img.shields.io/github/forks/supperthomas/nrf5x_sdk?style=flat-square&logo=GitHub"></a>
<a href="https://github.com/supperthomas/nrf5x_sdk/watchers"><img src="https://img.shields.io/github/watchers/supperthomas/nrf5x_sdk?style=flat-square&logo=GitHub"></a>
<a href="https://github.com/supperthomas/nrf5x_sdk/issues"><img src="https://img.shields.io/github/issues/supperthomas/nrf5x_sdk.svg?style=flat-square&logo=GitHub"></a>
基于Nordic nRF5_SDK_16 的软件包,
目前该软件是基于16.0.0 版本的官方SDK进行移植和方便大家在rtthread的上面尝试nordic官方的softdevice。 目前仅支持MDK,
GCC和IAR版本暂时没有经历支持和维护,欢迎PR一起来维护。
来源官方SDK
请注意:
使用之前请在rtthread工程中找到如下函数,做如下注释修改。才能使用正常softdevice的功能。
rt_hw_interrupt_disable PROC
EXPORT rt_hw_interrupt_disable
;MRS r0, PRIMASK
;CPSID I
BX LR
ENDP
;/*
; * void rt_hw_interrupt_enable(rt_base_t level);
; */
rt_hw_interrupt_enable PROC
EXPORT rt_hw_interrupt_enable
;MSR PRIMASK, r0
BX LR
ENDP