22 lines
479 B
C
22 lines
479 B
C
/*
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2019-06-29 WillianChan first version
|
|
*/
|
|
|
|
#include <rtthread.h>
|
|
|
|
#ifdef PKG_USING_NRF24L01
|
|
#include "drv_spi.h"
|
|
static int rt_hw_nrf24l01_init(void)
|
|
{
|
|
rt_hw_spi_device_attach("spi2", "spi20", GPIOD, GPIO_PIN_5);
|
|
return RT_EOK;
|
|
}
|
|
INIT_COMPONENT_EXPORT(rt_hw_nrf24l01_init);
|
|
#endif /* PKG_USING_NRF24L01 */
|