Skip to content

Commit 97212bf

Browse files
[nrf fromlist] modules: hal_nordic: Add nrfx configuration for nRF54L15 FP1
Added dedicated nrfx configuration files for nRF54L15 FP1, which differ from ENGA variant with inclusion of PDM. Updated NRFX version to 3.7 in configuratuon files to enable the use of new API. Signed-off-by: Michał Stasiak <[email protected]>
1 parent b83478a commit 97212bf

File tree

5 files changed

+3305
-3
lines changed

5 files changed

+3305
-3
lines changed

modules/hal_nordic/nrfx/nrfx_config.h

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1050,10 +1050,14 @@
10501050
#include <nrfx_config_nrf54h20_ppr.h>
10511051
#elif defined(NRF54H20_XXAA) && defined(NRF_FLPR)
10521052
#include <nrfx_config_nrf54h20_flpr.h>
1053-
#elif (defined(NRF54L15_XXAA) || defined(NRF54L15_ENGA_XXAA)) && defined(NRF_APPLICATION)
1053+
#elif defined(NRF54L15_ENGA_XXAA) && defined(NRF_APPLICATION)
10541054
#include <nrfx_config_nrf54l15_enga_application.h>
1055-
#elif (defined(NRF54L15_XXAA) || defined(NRF54L15_ENGA_XXAA)) && defined(NRF_FLPR)
1055+
#elif defined(NRF54L15_ENGA_XXAA) && defined(NRF_FLPR)
10561056
#include <nrfx_config_nrf54l15_enga_flpr.h>
1057+
#elif defined(NRF54L15_XXAA) && defined(NRF_APPLICATION)
1058+
#include <nrfx_config_nrf54l15_application.h>
1059+
#elif defined(NRF54L15_XXAA) && defined(NRF_FLPR)
1060+
#include <nrfx_config_nrf54l15_flpr.h>
10571061
#elif (defined(NRF54L20_XXAA) || defined(NRF54L20_ENGA_XXAA)) && defined(NRF_APPLICATION)
10581062
#include <nrfx_config_nrf54l20_enga_application.h>
10591063
#elif defined(NRF9120_XXAA) || defined(NRF9160_XXAA)

modules/hal_nordic/nrfx/nrfx_config_common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
/** @brief Symbol specifying minor version of the nrfx API to be used. */
2020
#ifndef NRFX_CONFIG_API_VER_MINOR
21-
#define NRFX_CONFIG_API_VER_MINOR 6
21+
#define NRFX_CONFIG_API_VER_MINOR 7
2222
#endif
2323

2424
/** @brief Symbol specifying micro version of the nrfx API to be used. */

modules/hal_nordic/nrfx/nrfx_config_nrf5340_application.h

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -596,6 +596,15 @@
596596
#define NRFX_PDM_CONFIG_LOG_LEVEL 3
597597
#endif
598598

599+
/**
600+
* @brief NRFX_PDM0_ENABLED
601+
*
602+
* Boolean. Accepted values 0 and 1.
603+
*/
604+
#ifndef NRFX_PDM0_ENABLED
605+
#define NRFX_PDM0_ENABLED 0
606+
#endif
607+
599608
/**
600609
* @brief NRFX_POWER_ENABLED
601610
*

0 commit comments

Comments
 (0)