mirror of
https://github.com/d0k3/GodMode9.git
synced 2025-06-26 13:42:47 +00:00
14 lines
194 B
C
14 lines
194 B
C
|
#pragma once
|
||
|
|
||
|
#include <types.h>
|
||
|
|
||
|
typedef struct {
|
||
|
u32 *buf;
|
||
|
u8 len;
|
||
|
bool read;
|
||
|
} SPI_XferInfo;
|
||
|
|
||
|
int SPI_DoXfer(u32 dev, SPI_XferInfo *xfer, u32 xfer_cnt);
|
||
|
|
||
|
void SPI_Init(void);
|