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
Loading
Pipeline #4599 passed
......@@ -89,8 +89,8 @@ const LlRtCfg_t _ll_cfg = {
/*dtmRxSyncMs*/ 10000,
/* PHY */
/*phy2mSup*/ TRUE,
/*phyCodedSup*/ TRUE,
/*phy2mSup*/ FALSE,
/*phyCodedSup*/ FALSE,
/*stableModIdxTxSup*/ FALSE,
/*stableModIdxRxSup*/ FALSE
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment