[拉普兰德]TSL1401线性CCD模块资料包

源代码在线查看: io.c

软件大小: 1937 K
上传用户: jellylihui
关键词: 1401 TSL CCD 线性
下载地址: 免注册下载 普通下载 VIP

相关代码

				/*
				 * File:		io.c
				 * Purpose:		Serial Input/Output routines
				 *
				 * Notes:       TERMINAL_PORT defined in .h
				 */
				
				#include "common.h"
				#include "uart.h"
				
				/********************************************************************/
				char
				in_char (void)
				{
					return uart_getchar(TERM_PORT);
				}
				/********************************************************************/
				void
				out_char (char ch)
				{
					uart_putchar(TERM_PORT, ch);
				}
				/********************************************************************/
				int
				char_present (void)
				{
					return uart_getchar_present(TERM_PORT);
				}
				/********************************************************************/
							

相关资源