/* * Copyright (c) 2017, NXP * * SPDX-License-Identifier: Apache-2.0 */ #ifndef _SOC__H_ #define _SOC__H_ #include #ifndef _ASMLANGUAGE #include /* Add include for DTS generated information */ #include #ifdef __cplusplus extern "C" { #endif #if defined(CONFIG_DISK_ACCESS_USDHC1) || \ defined(CONFIG_DISK_ACCESS_USDHC2) typedef void (*usdhc_pin_cfg_cb)(u16_t nusdhc, bool init, u32_t speed, u32_t strength); void imxrt_usdhc_pinmux(u16_t nusdhc, bool init, u32_t speed, u32_t strength); void imxrt_usdhc_pinmux_cb_register(usdhc_pin_cfg_cb cb); #endif #ifdef __cplusplus } #endif #endif /* !_ASMLANGUAGE */ #endif /* _SOC__H_ */