-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
stable_20.3.x.FOME: backup domain reset re: FOME_STM32_LSE_MAX_WAIT #5
stable_20.3.x.FOME: backup domain reset re: FOME_STM32_LSE_MAX_WAIT #5
Conversation
Based on RT-STM32F429ZI-NUCLEO144
also consider that the RTCSEL might have fallen back to the FOME_STM32_LSE_MAX_WAIT_RTCSEL when checking for backup domain reset rusefi@f3524fc
if ( | ||
#if STM32_LSE_ENABLED | ||
( | ||
fomeLseCounter >= FOME_STM32_LSE_MAX_WAIT |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This errors as the declaration is later.
Also, this idea doesn't work; I think fomeLseCounter
would have to be static
for it to work?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, this idea doesn't work; I think
fomeLseCounter
would have to bestatic
for it to work?
seems to build ... does it have the effect I'm hoping for? I assume this init
function is called on power restore and such? maybe static
doesn't survive that ...
7ea171c
to
b69d1c1
Compare
51d2782
to
d463988
Compare
created a FOME-Tech/ChibiOS:stable_20.3.x.FOME based upon rusefi/ChibiOS:stable_20.3.x.rusefi, which format some files as LF line-endings so that v21 patches/commits will apply cleanly through rebase (skill issue ...).
also consider that the RTCSEL might have fallen back to the FOME_STM32_LSE_MAX_WAIT_RTCSEL when checking for backup domain reset
rusefi@f3524fc