You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
193 B
C
10 lines
193 B
C
3 weeks ago
|
#ifndef __IOSPI_H__
|
||
|
#define __IOSPI_H__
|
||
|
|
||
|
void IOSPI_Init(void);
|
||
|
void IOSPI_CS_Low(void);
|
||
|
void IOSPI_CS_High(void);
|
||
|
uint32_t IOSPI_ReadWrite(uint32_t data, uint32_t len);
|
||
|
|
||
|
#endif // __IOSPI_H__
|