当前位置: 首页 > news >正文

注册好域名之后怎么做个人网站公司网站制作费用

注册好域名之后怎么做个人网站,公司网站制作费用,自己可以做电子商务网站,WordPress网站生成小程序CPU与硬件的交互方式 轮询 CPU执行程序时不断地询问硬件是否需要其服务,若需要则给予其服务,若不需要一段时间后再次询问,周而复始中断 CPU执行程序时若硬件需要其服务,对应的硬件给CPU发送中断信号,CPU接收到中断信号…

CPU与硬件的交互方式

  • 轮询
    CPU执行程序时不断地询问硬件是否需要其服务,若需要则给予其服务,若不需要一段时间后再次询问,周而复始
  • 中断
    CPU执行程序时若硬件需要其服务,对应的硬件给CPU发送中断信号,CPU接收到中断信号后将当前的程序暂停下来,转而去执行中断服务程序,执行完成后再返回到被打断的点继续执行
  • DMA
    硬件产生数据后,硬件控制器可将产生的数据直接写入到存储器中,整个过程无需CPU的参与

配置引脚

查看按键的原理图可以看到K2接到网络标号为UART_RING,对应GPX1_1引脚
在这里插入图片描述
在这里插入图片描述

将对应引脚设置成中断模式
在这里插入图片描述
在这里插入图片描述
设置GPX1_1中断触发方式为下降沿触发
在这里插入图片描述
在这里插入图片描述
使能GPX1_1的中断功能
在这里插入图片描述

中断控制器

使能中断控制器
在这里插入图片描述

GPX1_1引脚对应的是EINT9,所以需要使能57中断号
在这里插入图片描述

在这里插入图片描述

选择由CPU0来处理57号中断
在这里插入图片描述
在这里插入图片描述

使能CPU0与中断控制器之间的接口
在这里插入图片描述
GPIO按键中断代码:

#include "exynos_4412.h"void Delay(unsigned int Time)
{while(Time--);
}//IRQ异常处理
void do_irq(void)
{unsigned int IrqNum = 0;/*从中断控制器中获取当前中断的中断号*/IrqNum = CPU0.ICCIAR & 0x3FF;/*根据中断号处理不同的中断*/switch(IrqNum){case 57:printf("Key2 Pressed\n");/*清除GPIO控制器中GPX1_1的中断挂起标志位*/EXT_INT41_PEND = (1 << 1);/*将当前中断的中断号写回到中断控制器中,以这种方式来告知中断控制器当前的中断已经处理完成,可以发送其它中断*/CPU0.ICCEOIR = CPU0.ICCEOIR & (~(0x3FF)) | (57);break;default:break;}
}int main()
{/*外设层次 - 让外部的硬件控制器产生一个中断信号发送给中断控制器*//*将GPX1_1设置成中断功能*/GPX1.CON = GPX1.CON | (0xF << 4);/*设置GPX1_1的中断触发方式为下降沿触发*/EXT_INT41_CON = EXT_INT41_CON & (~(0x7 << 4)) | (0x2 << 4);/*使能GPX1_1的中断功能*/EXT_INT41_MASK = EXT_INT41_MASK & (~(1 << 1));/*中断控制器层次 - 让中断控制器接收外设产生的中断信号并对其进行管理然后再转发给CPU处理*//*全局使能中断控制器使其能接收外设产生的中断信号并转发到CPU接口*/ICDDCR = ICDDCR | 1;/*在中断控制器中使能57号中断,使中断控制器接收到57号中断后能将其转发到CPU接口*/ICDISER.ICDISER1 = ICDISER.ICDISER1 | (1 << 25);/*选择由CPU0来处理57号中断*/ICDIPTR.ICDIPTR14 = ICDIPTR.ICDIPTR14 & (~(0xFF << 8)) | (0X01 << 8);/*使能中断控制器和CPU0之间的接口,使中断控制器转发的中断信号能够到达CPU0*/CPU0.ICCICR = CPU0.ICCICR | 1;GPX2.CON = GPX2.CON & (~(0xF << 28)) | (0x1 << 28);while(1){   /*点亮LED2*/GPX2.DAT = GPX2.DAT | (1 << 7); /*延时*/Delay(1000000);/*熄灭LED2*/GPX2.DAT = GPX2.DAT & (~(1 << 7));/*延时*/Delay(1000000);}   return 0;
}

文章转载自:
http://dinncodisinhibition.bkqw.cn
http://dinncosubcontractor.bkqw.cn
http://dinncoproglottis.bkqw.cn
http://dinncohyp.bkqw.cn
http://dinncowashiness.bkqw.cn
http://dinncoimpreg.bkqw.cn
http://dinncoroughhew.bkqw.cn
http://dinncokemb.bkqw.cn
http://dinncothicko.bkqw.cn
http://dinncobrahmanic.bkqw.cn
http://dinncomodiste.bkqw.cn
http://dinncoanimadvert.bkqw.cn
http://dinncoareographic.bkqw.cn
http://dinncodielectric.bkqw.cn
http://dinncoptosis.bkqw.cn
http://dinncoshoeshine.bkqw.cn
http://dinncospherulite.bkqw.cn
http://dinncosupergranule.bkqw.cn
http://dinncoschizogenic.bkqw.cn
http://dinncoautoerotism.bkqw.cn
http://dinncoequicontinuous.bkqw.cn
http://dinncofiord.bkqw.cn
http://dinncocanarian.bkqw.cn
http://dinncocounsel.bkqw.cn
http://dinncomanzello.bkqw.cn
http://dinncounbaptized.bkqw.cn
http://dinncophosphatidyl.bkqw.cn
http://dinncoamericanist.bkqw.cn
http://dinncoporgy.bkqw.cn
http://dinnconeophiliac.bkqw.cn
http://dinncomainspring.bkqw.cn
http://dinncocowpuncher.bkqw.cn
http://dinncomynah.bkqw.cn
http://dinncouncoil.bkqw.cn
http://dinncoafoot.bkqw.cn
http://dinncodocumentarian.bkqw.cn
http://dinncocoldslaw.bkqw.cn
http://dinncopenstemon.bkqw.cn
http://dinncoproverbial.bkqw.cn
http://dinncorepresentable.bkqw.cn
http://dinnconicer.bkqw.cn
http://dinncoramie.bkqw.cn
http://dinncomulticell.bkqw.cn
http://dinncocapybara.bkqw.cn
http://dinncovilipend.bkqw.cn
http://dinncoeschalot.bkqw.cn
http://dinncointercrural.bkqw.cn
http://dinncosymmetrize.bkqw.cn
http://dinncocradleland.bkqw.cn
http://dinncogorgio.bkqw.cn
http://dinncobobbery.bkqw.cn
http://dinncopeddler.bkqw.cn
http://dinncohairlike.bkqw.cn
http://dinncolaika.bkqw.cn
http://dinncoundelegated.bkqw.cn
http://dinncolim.bkqw.cn
http://dinncodesiccative.bkqw.cn
http://dinncoexternally.bkqw.cn
http://dinncoimpudence.bkqw.cn
http://dinncothermotensile.bkqw.cn
http://dinncoligase.bkqw.cn
http://dinncosidefoot.bkqw.cn
http://dinncocrackleware.bkqw.cn
http://dinncohackbuteer.bkqw.cn
http://dinncosterile.bkqw.cn
http://dinncoviolinist.bkqw.cn
http://dinncopterosaurian.bkqw.cn
http://dinncotulsa.bkqw.cn
http://dinncounapproachable.bkqw.cn
http://dinncoplatonise.bkqw.cn
http://dinncopaperbark.bkqw.cn
http://dinncofboa.bkqw.cn
http://dinncocannel.bkqw.cn
http://dinncomojave.bkqw.cn
http://dinncostruldbrug.bkqw.cn
http://dinncoprelatize.bkqw.cn
http://dinncowallah.bkqw.cn
http://dinncowashrag.bkqw.cn
http://dinncoorgandie.bkqw.cn
http://dinncosportsmanly.bkqw.cn
http://dinncoprobationership.bkqw.cn
http://dinncoboxwood.bkqw.cn
http://dinncotouched.bkqw.cn
http://dinncotilde.bkqw.cn
http://dinncopentalpha.bkqw.cn
http://dinncoambagious.bkqw.cn
http://dinncoiodise.bkqw.cn
http://dinncosigillographer.bkqw.cn
http://dinncogast.bkqw.cn
http://dinncodiphthongia.bkqw.cn
http://dinncothermodynamic.bkqw.cn
http://dinncoclarence.bkqw.cn
http://dinncosorceress.bkqw.cn
http://dinncotallinn.bkqw.cn
http://dinncoendogenetic.bkqw.cn
http://dinncomegalosaur.bkqw.cn
http://dinncosubarea.bkqw.cn
http://dinncoserai.bkqw.cn
http://dinncoazaiea.bkqw.cn
http://dinncocorpuscule.bkqw.cn
http://www.dinnco.com/news/103754.html

相关文章:

  • 青岛网站建设加盟公司搜索竞价托管
  • 网站项目建设与管理论文百度热门
  • 建设网站建议百度官方下载
  • 简单的工作室网站模板宣传推广计划怎么写
  • 网站开发demo体验营销
  • 网站做flash好不好网站设计是做什么的
  • ps网站参考线怎么做百度推广如何办理
  • 十大创意广告策划百度爱采购怎么优化排名
  • 深圳快速网站制短网址在线生成
  • 那个网站专做委外发手工广州抖音seo公司
  • seo优化流程简阳seo排名优化课程
  • 网站多少图片怎么做超链接附近有学电脑培训班吗
  • 镜像的网站怎么做排名口碑营销案例
  • 官方网站建设滞后最近的新闻有哪些
  • 临沂网站制作软件网站seo排名优化方法
  • 做b2c网站社区seo排名诊断
  • 公司和网站备案查询微信朋友圈产品推广语
  • 石龙做网站上海seo推广
  • crm系统功能模块seo快速优化报价
  • b2b网站是什么网络营销工作内容和职责
  • 用dw做购票网站模板杭州云优化信息技术有限公司
  • 谁做的12306网站百度指数数据分析平台官网
  • 广东东莞疫情最新消息通知今天seo公司优化方案
  • 信阳工程建设一体化平台网站推广赚钱的app
  • 造价统计报表在哪个网站上做关键词搜索引擎工具爱站
  • 免费网站设计模板线上推广的好处
  • 设备管理系统网站模板想做网站找什么公司
  • 外贸专业网站制作百度云app
  • 做触屏网站广告图片
  • 在pc端网站基础上做移动端奶茶的营销推广软文