1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| /*
| * Copyright (c) 2019-2023 Mauna Kea Semiconductor Holdings.
| * All rights reserved.
| *
| */
| #ifndef USER_CONFIG_H_
| #define USER_CONFIG_H_
|
| /* =========================================================================================================================== */
| /* ================ Silicon configuration ================ */
| /* =========================================================================================================================== */
|
| /** CPU model */
| #define CPU_MK8000
|
| #define TRACE_EN (0)
|
| #endif /* USER_CONFIG_H_ */
|
|