1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- #ifndef PARTITION_STM32L5XX_H
- #define PARTITION_STM32L5XX_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #if defined(STM32L552xx)
- #include "partition_stm32l552xx.h"
- #elif defined(STM32L562xx)
- #include "partition_stm32l562xx.h"
- #else
- #error "Please select first the target STM32L5xx device used in your application (in stm32l5xx.h file)"
- #endif
- #ifdef __cplusplus
- }
- #endif
- #endif
|