From dc90387ce7d8ba7b607d9c48540bf6d8b560f14d Mon Sep 17 00:00:00 2001 From: Akshay Date: Sun, 10 Apr 2022 16:43:40 +0530 Subject: init --- .../devices/MIMX8MN5/project_template/board.h | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 lib/chibios-contrib/ext/mcux-sdk/devices/MIMX8MN5/project_template/board.h (limited to 'lib/chibios-contrib/ext/mcux-sdk/devices/MIMX8MN5/project_template/board.h') diff --git a/lib/chibios-contrib/ext/mcux-sdk/devices/MIMX8MN5/project_template/board.h b/lib/chibios-contrib/ext/mcux-sdk/devices/MIMX8MN5/project_template/board.h new file mode 100644 index 000000000..b3b5ef0f5 --- /dev/null +++ b/lib/chibios-contrib/ext/mcux-sdk/devices/MIMX8MN5/project_template/board.h @@ -0,0 +1,36 @@ +/* + * Copyright 2017, NXP + * All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + */ + +/** + * @file board.h + * @brief Board initialization header file. + */ + +/* This is an empty template for board specific configuration.*/ + +#ifndef _BOARD_H_ +#define _BOARD_H_ + +/** + * @brief The board name + */ +#define BOARD_NAME "board" + +#if defined(__cplusplus) +extern "C" { +#endif /* __cplusplus */ + +/** + * @brief Initialize board specific settings. + */ +void BOARD_InitDebugConsole(void); + +#if defined(__cplusplus) +} +#endif /* __cplusplus */ + +#endif /* _BOARD_H_ */ -- cgit v1.2.3