14 lines
145 B
C++
14 lines
145 B
C++
#ifndef LIB_H
|
|
#define LIB_H
|
|
|
|
#include <hardware/spi.h>
|
|
|
|
namespace lib::detail
|
|
{
|
|
|
|
spi_inst_t* get_spi_instance(uint8_t gpio);
|
|
|
|
}
|
|
|
|
#endif // LIB_H
|