24 lines
456 B
C
24 lines
456 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", GPIOG, GPIO_PIN_7);
|
||
|
return RT_EOK;
|
||
|
}
|
||
|
INIT_COMPONENT_EXPORT(rt_hw_nrf24l01_init);
|
||
|
|
||
|
#endif
|