Skip to content

Commit a37e822

Browse files
committed
Do not build for STM32MP1xx
Bootloader management is not applicable for this serie. Signed-off-by: Frederic Pillon <[email protected]>
1 parent 3da8f2d commit a37e822

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

libraries/SrcWrapper/src/stm32/bootloader.c

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/*
1111
* STM32 built-in bootloader in system memory support
1212
*/
13-
13+
#if !defined(STM32MP1xx)
1414
static const uint32_t BOOTLOADER_DELAY_MS = 250;
1515
static bool BootIntoBootloaderAfterReset;
1616
static uint32_t countdown = 0;
@@ -134,15 +134,18 @@ void cancelBootloaderReset()
134134
{
135135
countdown = 0;
136136
}
137+
#endif /* !STM32MP1xx */
137138

138139
/**
139140
* Bootloader systick handler, should be called every ms
140141
*/
141142
void bootloaderSystickHandler()
142143
{
144+
#ifndef STM32MP1xx
143145
if (countdown && --countdown == 0) {
144146
jumpToBootloaderRequested();
145147
}
148+
#endif /* !STM32MP1xx */
146149
}
147150

148151
/*

0 commit comments

Comments
 (0)