Skip to content

Commit

Permalink
mcu/nrf5x: Update nrfx to version 2.11
Browse files Browse the repository at this point in the history
This is latest nrfx 2.X version.
  • Loading branch information
sjanc committed Aug 1, 2023
1 parent b1a186a commit 6a1df07
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion hw/mcu/nordic/nrf5340/src/system_nrf5340.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ void SystemInit(void)
/* Trimming of the device. Copy all the trimming values from FICR into the target addresses. Trim
until one ADDR is not initialized. */
uint32_t index = 0;
for (index = 0; index < 32ul && NRF_FICR_S->TRIMCNF[index].ADDR != (uint32_t *)0xFFFFFFFFul; index++){
for (index = 0; index < 32ul && NRF_FICR_S->TRIMCNF[index].ADDR != 0xFFFFFFFFul; index++){
#if defined ( __ICCARM__ )
/* IAR will complain about the order of volatile pointer accesses. */
#pragma diag_suppress=Pa082
Expand Down
2 changes: 1 addition & 1 deletion hw/mcu/nordic/nrf5340_net/src/system_nrf5340_net.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ void SystemInit(void)
/* Trimming of the device. Copy all the trimming values from FICR into the target addresses. Trim
until one ADDR is not initialized. */
uint32_t index = 0;
for (index = 0; index < 32ul && NRF_FICR_NS->TRIMCNF[index].ADDR != (uint32_t *)0xFFFFFFFFul; index++){
for (index = 0; index < 32ul && NRF_FICR_NS->TRIMCNF[index].ADDR != 0xFFFFFFFFul; index++){
#if defined ( __ICCARM__ )
/* IAR will complain about the order of volatile pointer accesses. */
#pragma diag_suppress=Pa082
Expand Down
2 changes: 1 addition & 1 deletion hw/mcu/nordic/nrf91xx/include/nrfx9160_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#define NRFX9160_CONFIG_H__

#include "syscfg/syscfg.h"
#include "nrfx_config_nrf9160.h"
#include "nrfx_config_nrf91.h"

#ifndef NRFX_CLOCK_ENABLED
#define NRFX_CLOCK_ENABLED 0
Expand Down
2 changes: 1 addition & 1 deletion hw/mcu/nordic/nrf91xx/src/nrf91_clock.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include <stdint.h>
#include "mcu/nrf91_hal.h"
#include "nrfx.h"
#include "nrfx_config_nrf9160.h"
#include "nrfx_config_nrf91.h"

static uint8_t nrf91_clock_hfxo_refcnt;

Expand Down
2 changes: 1 addition & 1 deletion hw/mcu/nordic/pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ pkg.deps:

repository.nordic-nrfx:
type: github
vers: v2.8.0-commit
vers: v2.11.0-commit
branch: master
user: NordicSemiconductor
repo: nrfx
Expand Down

0 comments on commit 6a1df07

Please sign in to comment.