Skip to content

Commit 272786b

Browse files
committed
[nrf fromlist] modules: hal_nordic: Add missing nrfx_config entries for nRF54L15
Add nrfx_grtc related entries that were introduced in nrfx 3.4.0, especially NRFX_GRTC_CONFIG_AUTOSTART that should be by default set to 1. Signed-off-by: Andrzej Głąbek <[email protected]> (cherry picked from commit 0fdf9cc9970aa02bff31750f9a456a3ddece4b22) Upstream PR: zephyrproject-rtos/zephyr#70616
1 parent 3fb1c87 commit 272786b

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

modules/hal_nordic/nrfx/nrfx_config_nrf54l15_enga_application.h

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,33 @@
249249
#define NRFX_GRTC_ENABLED 0
250250
#endif
251251

252+
/**
253+
* @brief NRFX_GRTC_CONFIG_SLEEP_ALLOWED
254+
*
255+
* Boolean. Accepted values: 0 and 1.
256+
*/
257+
#ifndef NRFX_GRTC_CONFIG_SLEEP_ALLOWED
258+
#define NRFX_GRTC_CONFIG_SLEEP_ALLOWED 0
259+
#endif
260+
261+
/**
262+
* @brief NRFX_GRTC_CONFIG_AUTOEN
263+
*
264+
* Boolean. Accepted values: 0 and 1.
265+
*/
266+
#ifndef NRFX_GRTC_CONFIG_AUTOEN
267+
#define NRFX_GRTC_CONFIG_AUTOEN 0
268+
#endif
269+
270+
/**
271+
* @brief NRFX_GRTC_CONFIG_AUTOSTART
272+
*
273+
* Boolean. Accepted values: 0 and 1.
274+
*/
275+
#ifndef NRFX_GRTC_CONFIG_AUTOSTART
276+
#define NRFX_GRTC_CONFIG_AUTOSTART 1
277+
#endif
278+
252279
/**
253280
* @brief NRFX_GRTC_CONFIG_NUM_OF_CC_CHANNELS
254281
*

0 commit comments

Comments
 (0)