Bluetooth: controller: nrf5: Fix AAR scratch pointer
The nRF5's AAR was being improperly configured, leading to a NULL scratch pointer which made it not function at all. Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
This commit is contained in:
parent
4daabbd94e
commit
ba2f0a1f1e
1 changed files with 1 additions and 1 deletions
|
@ -799,7 +799,7 @@ void radio_ar_configure(u32_t nirk, void *irk)
|
|||
NRF_AAR->NIRK = nirk;
|
||||
NRF_AAR->IRKPTR = (u32_t)irk;
|
||||
NRF_AAR->ADDRPTR = (u32_t)NRF_RADIO->PACKETPTR;
|
||||
NRF_AAR->SCRATCHPTR = (u32_t)_aar_scratch[0];
|
||||
NRF_AAR->SCRATCHPTR = (u32_t)&_aar_scratch[0];
|
||||
|
||||
radio_bc_configure(64);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue