19 lines
406 B
C
19 lines
406 B
C
|
/*
|
||
|
* Copyright (c) 2006-2018, 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",GPIOG,GPIO_PIN_9);
|
||
|
}
|
||
|
INIT_DEVICE_EXPORT(w5500_spi_device_init);
|