Skip to content
Snippets Groups Projects
Commit ddb033aa authored by David Sidrane's avatar David Sidrane Committed by Lorenz Meier
Browse files

Temp fix - Needs to move to micro hal

parent dcc2d1c3
No related branches found
No related tags found
No related merge requests found
......@@ -51,8 +51,12 @@
#include <sys/stat.h>
#include <sys/types.h>
#ifndef CONFIG_ARCH_BOARD_SIM
#include <stm32_pwr.h>
#ifdef CONFIG_ARCH_BOARD_SIM
#define stm32_pwr_enablebkp(onoff)
#else
# if defined(CONFIG_ARCH_CHIP_STM32) || defined(CONFIG_ARCH_CHIP_STM32F7)
# include <stm32_pwr.h>
# endif
#endif
#include <systemlib/systemlib.h>
......@@ -64,12 +68,11 @@ void
px4_systemreset(bool to_bootloader)
{
if (to_bootloader) {
#ifndef CONFIG_ARCH_BOARD_SIM
stm32_pwr_enablebkp();
#endif
stm32_pwr_enablebkp(true);
/* XXX wow, this is evil - write a magic number into backup register zero */
*(uint32_t *)0x40002850 = 0xb007b007;
stm32_pwr_enablebkp(false);
}
up_systemreset();
......
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