您的位置 首页 设计

XS128单片机试验:读取拨码开关值

includehidefh>*commondefinesandmacros*includederivativeh*derivative-specificdefinitions*******

#include /* common defines and macros */
#include “derivative.h” /* derivative-specific definitions */
/*********************************************************
//功用: 读取PORTA口拨码开关状况,经过portb 口的LED灯显现
//This is the thirdprogramof mine
//已经过硬件验证;
//Date: 2013/4/13
*********************************************************/
void main(void) {
unsigned char sw_value; //界说变量,记载拨码开关设置值

DDRA = 0X00; //界说A口为输进口
DDRB = 0XFF; //界说B口为输出口
while(1){
sw_value = PORTA;
PORTB = sw_value;
}
}

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/ziliao/sheji/255039.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部