Skip to content

Commit

Permalink
modules: hal_nordic: nrfx_config: Fix NRFX_UARTE_CONFIG_RX_CACHE_ENABLED
Browse files Browse the repository at this point in the history
Config should not be enabled for nrf54l15.

Signed-off-by: Krzysztof Chruściński <[email protected]>
  • Loading branch information
nordic-krch committed Jun 3, 2024
1 parent 10def65 commit 06e2140
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1523,7 +1523,7 @@
* Boolean. Accepted values: 0 and 1.
*/
#ifndef NRFX_UARTE_CONFIG_RX_CACHE_ENABLED
#define NRFX_UARTE_CONFIG_RX_CACHE_ENABLED 1
#define NRFX_UARTE_CONFIG_RX_CACHE_ENABLED 0
#endif

/**
Expand Down
2 changes: 1 addition & 1 deletion modules/hal_nordic/nrfx/nrfx_config_nrf54l15_enga_flpr.h
Original file line number Diff line number Diff line change
Expand Up @@ -1515,7 +1515,7 @@
* Boolean. Accepted values: 0 and 1.
*/
#ifndef NRFX_UARTE_CONFIG_RX_CACHE_ENABLED
#define NRFX_UARTE_CONFIG_RX_CACHE_ENABLED 1
#define NRFX_UARTE_CONFIG_RX_CACHE_ENABLED 0
#endif

/**
Expand Down

0 comments on commit 06e2140

Please sign in to comment.