sio.h
来自「UART interrupt based, LPC2148, Keil real」· C头文件 代码 · 共 21 行
H
21 行
/*------------------------------------------------------------------------------
SIO.H: Serial Communication Routines for Philips LPC2100.
Copyright 2004-2005 KEIL Software, Inc.
------------------------------------------------------------------------------*/
#ifndef LPC2100_SIO_H
#define LPC2100_SIO_H
void com_initialize (void);
void com_baudrate (
unsigned int baudrate);
int com_putchar (
int c) __swi(8);
int com_getchar (void) __swi(9);
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?