
Updated the permissions of sources files[c/h] in src and misc folder to 644. Signed-off-by: Krishna Chaitanya <kpataka@xilinx.com> Acked-by: Anirudha Sarangi <anirudh@xilinx.com>
14 lines
206 B
C
14 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);
|
|
}
|