Skip to content

Commit c59ab20

Browse files
committed
chore: add generated util header file
Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
1 parent df65d49 commit c59ab20

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#ifndef _STM32YYXX_UTIL_I3C_H_
2+
#define _STM32YYXX_UTIL_I3C_H_
3+
/* LL raised several warnings, ignore them */
4+
#pragma GCC diagnostic push
5+
#pragma GCC diagnostic ignored "-Wunused-parameter"
6+
#pragma GCC diagnostic ignored "-Wstrict-aliasing"
7+
#ifdef __cplusplus
8+
#pragma GCC diagnostic ignored "-Wregister"
9+
#endif
10+
11+
#ifdef STM32H5xx
12+
#include "stm32h5xx_util_i3c.h"
13+
#elif STM32U3xx
14+
#include "stm32u3xx_util_i3c.h"
15+
#endif
16+
#pragma GCC diagnostic pop
17+
#endif /* _STM32YYXX_UTIL_I3C_H_ */

0 commit comments

Comments
 (0)