Skip to content

Commit 9806c00

Browse files
committed
fix(mp1): redefinition of VECT_TAB_OFFSET
Signed-off-by: Frederic Pillon <[email protected]>
1 parent 0769f19 commit 9806c00

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Diff for: system/STM32MP1xx/system_stm32mp1xx.c

+3-1
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,10 @@
7373
/*!< Uncomment the following line if you need to relocate your vector Table in
7474
Internal SRAM. */
7575
/* #define VECT_TAB_SRAM */
76-
#define VECT_TAB_OFFSET 0x00 /*!< Vector Table base offset field.
76+
#ifndef VECT_TAB_OFFSET
77+
#define VECT_TAB_OFFSET 0x00 /*!< Vector Table base offset field.
7778
This value must be a multiple of 0x400. */
79+
#endif
7880
/******************************************************************************/
7981

8082
/**

0 commit comments

Comments
 (0)