Skip to content
Snippets Groups Projects
Commit 46c4a68b authored by David Sidrane's avatar David Sidrane Committed by Daniel Agar
Browse files

fmu-v5: Move stage 0 dcache disable to later in boot (#11791)

parent 6f5c97f1
No related branches found
No related tags found
No related merge requests found
......@@ -191,8 +191,6 @@ stm32_boardinitialize(void)
{
board_on_reset(-1); /* Reset PWM first thing */
board_configure_dcache(0);
/* configure LEDs */
board_autoled_initialize();
......@@ -232,6 +230,9 @@ stm32_boardinitialize(void)
__EXPORT int board_app_initialize(uintptr_t arg)
{
board_configure_dcache(0);
px4_platform_init();
/* configure the DMA allocator */
......
......@@ -230,8 +230,6 @@ stm32_boardinitialize(void)
{
board_on_reset(-1); /* Reset PWM first thing */
board_configure_dcache(0);
/* configure LEDs */
board_autoled_initialize();
......@@ -281,6 +279,8 @@ __EXPORT int board_app_initialize(uintptr_t arg)
{
/* Power on Interfaces */
board_configure_dcache(0);
VDD_3V3_SD_CARD_EN(true);
VDD_5V_PERIPH_EN(true);
VDD_5V_HIPOWER_EN(true);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment