Skip to content

Commit ded967b

Browse files
Rallarenordicjm
authored andcommitted
samples: bluetooth: Fix errata 117 check
There is a typo in the nrf5340 errata 117 logic, where it checked for a nRF52-series device instead of a nRF53-series device. This caused a hard-fault if the function ran successfully on a nRF52-series device. Fix is to use the same implementation as done in sample ../peripheral/radio_test File and function: radio_test.c::errata_117() Signed-off-by: Håkon Alseth <[email protected]>
1 parent 5182bf1 commit ded967b

File tree

1 file changed

+1
-1
lines changed
  • samples/bluetooth/direct_test_mode/src

1 file changed

+1
-1
lines changed

samples/bluetooth/direct_test_mode/src/dtm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1592,7 +1592,7 @@ static void errata_172_handle(bool enable)
15921592

15931593
static void errata_117_handle(bool enable)
15941594
{
1595-
if (!nrf52_errata_117()) {
1595+
if (!nrf53_errata_117()) {
15961596
return;
15971597
}
15981598

0 commit comments

Comments
 (0)