nimble icon indicating copy to clipboard operation
nimble copied to clipboard

An Apache open-source Bluetooth 5.0 stack porting on RT-Thread

Results 7 nimble issues
Sort by recently updated
recently updated
newest added

nimble `ble_npl_eventq_remove()` 函数仅从事件队列里移除某一个事件,而移植实现里复位清空了整个消息队列,这个是有隐患的,可能会导致协议栈工作不正常,需要修改。 ```c void ble_npl_eventq_remove(struct ble_npl_eventq *evq, struct ble_npl_event *ev) { if (!ev->queued) { return; } rt_mq_control((struct rt_messagequeue *)evq->q, RT_IPC_CMD_RESET, RT_NULL); ev->queued = false; } ``` 而且这个函数在 controller 和...

最新的代码BLE SAMPLE 有些问题,广播可以,链接不行。

目前的内嵌汇编只支持 gcc,没对 armcc 与 armclang 做兼容 v1.0.0 的汇编是直接注释掉的 ![b65d5ba8b8037657e1fbbf8aba112c3](https://user-images.githubusercontent.com/25771942/146748871-502ce063-8cc9-4041-bab7-947abf80a901.png)

1. 测试nrf5x开发板 使用nimble有问题。

nimble怎么接入PA芯片呀,驱动怎么写呢

- [ ] Nordic 原生态支持,目前支持不是很好只有1.0版本 - [ ] 与upstream的联动或者方便更新 - [ ] app上的example的理解和测试方法 - [ ] hci uart 流控那边完善一下。