Skip to content

Commit

Permalink
modules: hal_nordic: Add missing nrfx_config entries for nRF54L15
Browse files Browse the repository at this point in the history
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.

(cherry picked from commit 902351a)

Original-Signed-off-by: Andrzej Głąbek <andrzej.glabek@nordicsemi.no>
GitOrigin-RevId: 902351a
Change-Id: I8e049432fbea7877453b690c4111da5c3f6c91b0
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/zephyr/+/5434405
Tested-by: ChromeOS Prod (Robot) <chromeos-ci-prod@chromeos-bot.iam.gserviceaccount.com>
Commit-Queue: Keith Short <keithshort@chromium.org>
Reviewed-by: Keith Short <keithshort@chromium.org>
Tested-by: Keith Short <keithshort@chromium.org>
  • Loading branch information
anangl authored and Chromeos LUCI committed Apr 8, 2024
1 parent ee76896 commit 54f4203
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions modules/hal_nordic/nrfx/nrfx_config_nrf54l15_enga_application.h
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,33 @@
#define NRFX_GRTC_ENABLED 0
#endif

/**
* @brief NRFX_GRTC_CONFIG_SLEEP_ALLOWED
*
* Boolean. Accepted values: 0 and 1.
*/
#ifndef NRFX_GRTC_CONFIG_SLEEP_ALLOWED
#define NRFX_GRTC_CONFIG_SLEEP_ALLOWED 0
#endif

/**
* @brief NRFX_GRTC_CONFIG_AUTOEN
*
* Boolean. Accepted values: 0 and 1.
*/
#ifndef NRFX_GRTC_CONFIG_AUTOEN
#define NRFX_GRTC_CONFIG_AUTOEN 0
#endif

/**
* @brief NRFX_GRTC_CONFIG_AUTOSTART
*
* Boolean. Accepted values: 0 and 1.
*/
#ifndef NRFX_GRTC_CONFIG_AUTOSTART
#define NRFX_GRTC_CONFIG_AUTOSTART 1
#endif

/**
* @brief NRFX_GRTC_CONFIG_NUM_OF_CC_CHANNELS
*
Expand Down

0 comments on commit 54f4203

Please sign in to comment.