123456789101112131415161718 |
- /*
- * Copyright (c) 2006-2021, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2018-11-26 BalanceTWK add port file
- */
- #include "drv_spi.h"
- int w5500_spi_device_init()
- {
- __HAL_RCC_GPIOG_CLK_ENABLE();
- return rt_hw_spi_device_attach("spi2","spi20",GET_PIN(G, 9));
- }
- INIT_DEVICE_EXPORT(w5500_spi_device_init);
|