15 lines
206 B
C
15 lines
206 B
C
![]() |
#include "xparameters.h"
|
||
|
#include "xuartps_hw.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
char inbyte(void);
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
char inbyte(void) {
|
||
|
return XUartPs_RecvByte(STDIN_BASEADDRESS);
|
||
|
}
|