范例程序 SONiX

源代码在线查看: input and pull high.c

软件大小: 1087 K
上传用户: xu__tiger
关键词: SONiX 范例 程序
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include	
				
				
				void main (void)
				{
				//================================================================
				//		All I/O Port set to the input mode 
				//================================================================
				
						P1M=0x00;						// P10~P17 set to the input mode 
						P2M=0x00;						// P20~P27 set to the input mode 
						P1UR=0xFF;					// P10~P17 set pull high	
						P2UR=0xFF						// P20~P27 set pull high
				
				//================================================================
				//	Single PIN set to the input mode
				//================================================================
						FP50=0;							// P50 set to the input mode
						FP51=0;							// P51 set to the input mode
						
						P5UR=0x03;				  // P50,P51 set pull high
				
					while(1)
					{
				//================================================================
				//
				//	User code
				//
				//================================================================
				  }
				
				} 			

相关资源