diff options
author | Akshay <[email protected]> | 2022-04-10 12:13:40 +0100 |
---|---|---|
committer | Akshay <[email protected]> | 2022-04-10 12:13:40 +0100 |
commit | dc90387ce7d8ba7b607d9c48540bf6d8b560f14d (patch) | |
tree | 4ccb8fa5886b66fa9d480edef74236c27f035e16 /lib/chibios-contrib/ext/mcux-sdk/devices/MIMX8MN3/project_template/pin_mux.h |
Diffstat (limited to 'lib/chibios-contrib/ext/mcux-sdk/devices/MIMX8MN3/project_template/pin_mux.h')
-rw-r--r-- | lib/chibios-contrib/ext/mcux-sdk/devices/MIMX8MN3/project_template/pin_mux.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/lib/chibios-contrib/ext/mcux-sdk/devices/MIMX8MN3/project_template/pin_mux.h b/lib/chibios-contrib/ext/mcux-sdk/devices/MIMX8MN3/project_template/pin_mux.h new file mode 100644 index 000000000..13f807dbb --- /dev/null +++ b/lib/chibios-contrib/ext/mcux-sdk/devices/MIMX8MN3/project_template/pin_mux.h | |||
@@ -0,0 +1,33 @@ | |||
1 | /* | ||
2 | * Copyright 2017, NXP | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * SPDX-License-Identifier: BSD-3-Clause | ||
6 | */ | ||
7 | |||
8 | /** | ||
9 | * @file pin_mux.h | ||
10 | * @brief Board pins header file. | ||
11 | */ | ||
12 | |||
13 | /* This is an empty template for board specific configuration.*/ | ||
14 | |||
15 | #ifndef _PIN_MUX_H_ | ||
16 | #define _PIN_MUX_H_ | ||
17 | |||
18 | #if defined(__cplusplus) | ||
19 | extern "C" { | ||
20 | #endif /* __cplusplus */ | ||
21 | |||
22 | /** | ||
23 | * @brief Initialize board pins. | ||
24 | */ | ||
25 | void BOARD_InitBootPins(void); | ||
26 | |||
27 | #if defined(__cplusplus) | ||
28 | } | ||
29 | #endif /* __cplusplus */ | ||
30 | |||
31 | #endif /* _PIN_MUX_H_ */ | ||
32 | |||
33 | |||