-
Notifications
You must be signed in to change notification settings - Fork 17.6k
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
Fix CubeRed and Dual Core Bootloader issues #27392
Fix CubeRed and Dual Core Bootloader issues #27392
Conversation
bugobliterator
commented
Jun 26, 2024
- Disable second core by default
- Fix bug in dual usb bootloader related to timeout.
- Rebuild bootloaders for dual core Cubes
c8b7cfa
to
957775b
Compare
@@ -286,15 +286,15 @@ def configure_env(self, cfg, env): | |||
|
|||
if cfg.env.DEBUG: | |||
env.CFLAGS += [ | |||
'-g', | |||
'-g3', |
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.
check works on clang? or enable only on gcc
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.
--debug build added to CI check.
@@ -269,6 +269,30 @@ void __early_init(void) { | |||
STM32_NOCACHE_MPU_REGION_2_SIZE | | |||
MPU_RASR_ENABLE); | |||
#endif | |||
#if defined(DUAL_CORE) |
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.
not critical, but prefer a fn in stm32_util.c
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.
done
957775b
to
c294a3b
Compare
3f64dab
to
0424dfd
Compare