Skip to content

Commit

Permalink
There is a wrong in the comments in ble_ll_sched.h
Browse files Browse the repository at this point in the history
From the Bluetooth Core Spec 5.1, Vol6, PartB, Page2696
The maximum adv package len is 257( 2 Bytes Header + 255 Bytes Payload)
  • Loading branch information
wnnwoo authored and sjanc committed Dec 30, 2019
1 parent d26fd0e commit 3f373f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nimble/controller/include/controller/ble_ll_sched.h
Expand Up @@ -48,7 +48,7 @@ extern "C" {
#define BLE_LL_SCHED_MAX_ADV_PDU_USECS (376)

/* We don't know how big aux packet will be. It depends on adv packet len which
* can be up to 256. For now we fix it to 128 bytes, but we can optimize it.
* can be up to 257. For now we fix it to 128 bytes, but we can optimize it.
*/
#define BLE_LL_SCHED_AUX_PTR_DFLT_BYTES_NUM (128)

Expand Down

0 comments on commit 3f373f3

Please sign in to comment.