Skip to content

Commit ba7955e

Browse files
committed
[MP1] Add HAL config
1 parent 2f6b1af commit ba7955e

File tree

3 files changed

+694
-0
lines changed

3 files changed

+694
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#ifndef __STM32MP1xx_HAL_CONF_H
2+
#define __STM32MP1xx_HAL_CONF_H
3+
4+
#include "variant.h"
5+
6+
/* STM32MP1xx specific HAL configuration options. */
7+
#if __has_include("hal_conf_custom.h")
8+
#include "hal_conf_custom.h"
9+
#else
10+
#if __has_include("hal_conf_extra.h")
11+
#include "hal_conf_extra.h"
12+
#endif
13+
#include "stm32mp1xx_hal_conf_default.h"
14+
#endif
15+
16+
#endif /* __STM32MP1xx_HAL_CONF_H */

0 commit comments

Comments
 (0)