Skip to content
Snippets Groups Projects
Commit 72b4f233 authored by schneider's avatar schneider
Browse files

fix(ble): Turn off coded and 2M phys

The 2M phy caused problems when turning on encryption. I'm also
disabling the coded phy as I don't know it it works and need to first
test it with a phone/central which has support.

Closes #172
parent 1bc16500
No related branches found
No related tags found
No related merge requests found
...@@ -89,8 +89,8 @@ const LlRtCfg_t _ll_cfg = { ...@@ -89,8 +89,8 @@ const LlRtCfg_t _ll_cfg = {
/*dtmRxSyncMs*/ 10000, /*dtmRxSyncMs*/ 10000,
/* PHY */ /* PHY */
/*phy2mSup*/ TRUE, /*phy2mSup*/ FALSE,
/*phyCodedSup*/ TRUE, /*phyCodedSup*/ FALSE,
/*stableModIdxTxSup*/ FALSE, /*stableModIdxTxSup*/ FALSE,
/*stableModIdxRxSup*/ FALSE /*stableModIdxRxSup*/ FALSE
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment