1 /* 2 * Copyright 2021 MindMotion Microelectronics Co., Ltd. 3 * All rights reserved. 4 * 5 * SPDX-License-Identifier: BSD-3-Clause 6 */ 7 8 #ifndef __HAL_COMMON_H__ 9 #define __HAL_COMMON_H__ 10 11 #include <stdint.h> 12 #include <stdbool.h> 13 #include <string.h> 14 15 #include "hal_device_registers.h" 16 17 #endif /* __HAL_COMMON_H__ */ 18 19