1 /*
2  * Copyright (c) 2023 IoT.bzh
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  *
6  */
7 
8 #ifndef _SOC__H_
9 #define _SOC__H_
10 
11 /* Define CMSIS configurations */
12 #define __CR_REV      1U
13 
14 /* Do not let CMSIS to handle GIC and Timer */
15 #define __GIC_PRESENT 0
16 #define __TIM_PRESENT 0
17 
18 #endif /* _SOC__H_ */
19