kinetis/rtc: Enable global lock for all - #19691
Open
ghnotgood wants to merge 1 commit into
Open
Conversation
g_rtc_lock is used by the up_rtc_settime, a base RTC function. Therefore, it should be available even for this procedure, not just when CONFIG_RTC_HIRES. Signed-off-by: Jiri Vlasak <jvlasak@elektroline.cz>
ghnotgood
force-pushed
the
enable-rtc-global-lock
branch
from
August 5, 2026 07:11
8d13c47 to
51e070e
Compare
xiaoxiang781216
approved these changes
Aug 5, 2026
jerpelea
approved these changes
Aug 5, 2026
anchao
approved these changes
Aug 5, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
g_rtc_lock is used by the up_rtc_settime, a base RTC function. Therefore, it should be available even for this procedure, not just when CONFIG_RTC_HIRES.
Summary
This change is needed for successful compilation for Kinetis K60 with the following combination of config defines:
Impact
After applying this change, we can compile NuttX with the given combination of defines.
Testing
I have successfully compiled NuttX for our K60-based board, set the date/time using
datecommand and confirmed that the time persist after reboot.