21 lines
284 B
C
21 lines
284 B
C
//
|
|
// Created by erki on 4.06.22.
|
|
//
|
|
|
|
#ifndef SKL_TUNNEL_RADIO_SPI_H
|
|
#define SKL_TUNNEL_RADIO_SPI_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <hal_spi_m_sync.h>
|
|
|
|
struct spi_m_sync_descriptor* radio_spi_init(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif //SKL_TUNNEL_RADIO_SPI_H
|