intcomm.h

来自「如文件名」· C头文件 代码 · 共 21 行

H
21
字号
/* intcomm.h
 * Interrupt Driven Serial IO via uart0
 * David Wolpoff
 * 6/6/06
 *
 * Modified to FIQ 7 September 2006
 */

void uart0ISR_init(void);
void uart0ISR_stop(void);
void uart0_init();

/* Returns -1 if the thing failed, 0 otherwise */
int uart0_putch(unsigned char input);

/* always returns a character--
 * returns 0 if the rxbuf was empty 
 */
unsigned char uart0_getch();

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?