##// END OF EJS Templates

File last commit:

r220:221
r221:222
Show More
fpgaport.h
19 lines | 274 B | text/x-c | CLexer
r220 /*
* fpgaport.h
*
* Created on: Mar 26, 2015
* Author: shinobi
*/
#ifndef FPGAPORT_H_
#define FPGAPORT_H_
#include <inttypes.h>
void fpgaport_open();
void fpgaport_close();
void fpgaport_write(uint8_t data);
uint8_t fpgaport_read();
#endif /* FPGAPORT_H_ */