You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Three Kconfig style issues were caught by a style script shared in
zephyrproject-rtos/zephyr#94780.
This PR addresses 2/3 of these:
- MEMFAULT_NCS_STACK_METRICS - incorrect indent of help text
- MEMFAULT_CDR_ENABLE – default n bool. This is a redefinition of a
symbol in the Memfault module to override the default y and select
another Kconfig:
- There is no clear reason to make it default y. Code and RAM space
added is reasonable: +460B flash, +224B RAM when building
samples/debug/memfault, and can always be opted out of by the user
- The #define in the extra platform config is no longer needed, so the
select statement is unnecessary. The Memfault SDK now reads the
Kconfig and sets this define automatically.
Re-running the style script confirmed these two issues were fixed by
these changes.
The third failure (MEMFAULT_HTTP_USES_MBEDTLS - default n bool) will be
fixed in a follow-up PR after the next Memfault module release, which
will include this default in the original definition.
Signed-off-by: Gillian Minnehan <[email protected]>
0 commit comments