让atmega8可以和飞思卡尔xs128一样对IO引脚进行定义

   好吧,不得不承认,我使用飞思卡尔的XS128单片机已经非常之习惯了,结果一上手atmega8,最令我反感的就是atmega8不能对IO引脚进行操作,非要用些繁琐的位操作。我就不,我就要像飞思卡尔那样操作。。。

 

      于是。。。。。。

     把我写的下面这个头文件塞到winavr目录的include/avr中,并在io.h头文件的最后包含这个头文件。

     嘿嘿,一切变得是那么的亲切与熟悉。。。。。。

/*********************************************************** 
* 函数库说明:ATMEGE8
* 版本: v1.0
* 修改: 庞辉 芜湖联大飞思卡尔工作室
* 修改日期: 2011年08月04日
*
* 说明: 无
*
* 版本更新:
*
************************************************************
*注意: 无
**********************************************************
*/  

#ifndef _BIT_
#define _BIT_

//定义一个8字节的位段 bit0~7是每个位段名称 1代表一位 PBIT就是整个位段的名称
typedef struct

{
unsigned bit0 : 1 ;
unsigned bit1 : 1 ;
unsigned bit2 : 1 ;
unsigned bit3 : 1 ;
unsigned bit4 : 1 ;
unsigned bit5 : 1 ;
unsigned bit6 : 1 ;
unsigned bit7 : 1 ;
}PBIT;

//强制转换

#define PORTABIT (*(volatile PBIT *)0x3B)
#define DDRABIT (*(volatile PBIT *)0x3A)
#define PINABIT (*(volatile PBIT *)0x39)

#define PORTBBIT (*(volatile PBIT *)0x38)
#define DDRBBIT (*(volatile PBIT *)0x37)
#define PINBBIT (*(volatile PBIT *)0x36)

#define PORTCBIT (*(volatile PBIT *)0x35)
#define DDRCBIT (*(volatile PBIT *)0x34)
#define PINCBIT (*(volatile PBIT *)0x33)

#define PORTDBIT (*(volatile PBIT *)0x32)
#define DDRDBIT (*(volatile PBIT *)0x31)
#define PINDBIT (*(volatile PBIT *)0x30)


//继续封装

#define PORTA_PA0 PORTABIT.bit0
#define PORTA_PA1 PORTABIT.bit1
#define PORTA_PA2 PORTABIT.bit2
#define PORTA_PA3 PORTABIT.bit3
#define PORTA_PA4 PORTABIT.bit4
#define PORTA_PA5 PORTABIT.bit5
#define PORTA_PA6 PORTABIT.bit6
#define PORTA_PA7 PORTABIT.bit7

#define PORTB_PB0 PORTBBIT.bit0
#define PORTB_PB1 PORTBBIT.bit1
#define PORTB_PB2 PORTBBIT.bit2
#define PORTB_PB3 PORTBBIT.bit3
#define PORTB_PB4 PORTBBIT.bit4
#define PORTB_PB5 PORTBBIT.bit5
#define PORTB_PB6 PORTBBIT.bit6
#define PORTB_PB7 PORTBBIT.bit7

#define PORTC_PC0 PORTCBIT.bit0
#define PORTC_PC1 PORTCBIT.bit1
#define PORTC_PC2 PORTCBIT.bit2
#define PORTC_PC3 PORTCBIT.bit3
#define PORTC_PC4 PORTCBIT.bit4
#define PORTC_PC5 PORTCBIT.bit5
#define PORTC_PC6 PORTCBIT.bit6
#define PORTC_PC7 PORTCBIT.bit7

#define PORTD_PD0 PORTDBIT.bit0
#define PORTD_PD1 PORTDBIT.bit1
#define PORTD_PD2 PORTDBIT.bit2
#define PORTD_PD3 PORTDBIT.bit3
#define PORTD_PD4 PORTDBIT.bit4
#define PORTD_PD5 PORTDBIT.bit5
#define PORTD_PD6 PORTDBIT.bit6
#define PORTD_PD7 PORTDBIT.bit7


//**********************
#define DDRA_DDRA0 DDRABIT.bit0
#define DDRA_DDRA1 DDRABIT.bit1
#define DDRA_DDRA2 DDRABIT.bit2
#define DDRA_DDRA3 DDRABIT.bit3
#define DDRA_DDRA4 DDRABIT.bit4
#define DDRA_DDRA5 DDRABIT.bit5
#define DDRA_DDRA6 DDRABIT.bit6
#define DDRA_DDRA7 DDRABIT.bit7

#define DDRB_DDRB0 DDRBBIT.bit0
#define DDRB_DDRB1 DDRBBIT.bit1
#define DDRB_DDRB2 DDRBBIT.bit2
#define DDRB_DDRB3 DDRBBIT.bit3
#define DDRB_DDRB4 DDRBBIT.bit4
#define DDRB_DDRB5 DDRBBIT.bit5
#define DDRB_DDRB6 DDRBBIT.bit6
#define DDRB_DDRB7 DDRBBIT.bit7

#define DDRC_DDRC0 DDRCBIT.bit0
#define DDRC_DDRC1 DDRCBIT.bit1
#define DDRC_DDRC2 DDRCBIT.bit2
#define DDRC_DDRC3 DDRCBIT.bit3
#define DDRC_DDRC4 DDRCBIT.bit4
#define DDRC_DDRC5 DDRCBIT.bit5
#define DDRC_DDRC6 DDRCBIT.bit6
#define DDRC_DDRC7 DDRCBIT.bit7

#define DDRD_DDRD0 DDRDBIT.bit0
#define DDRD_DDRD1 DDRDBIT.bit1
#define DDRD_DDRD2 DDRDBIT.bit2
#define DDRD_DDRD3 DDRDBIT.bit3
#define DDRD_DDRD4 DDRDBIT.bit4
#define DDRD_DDRD5 DDRDBIT.bit5
#define DDRD_DDRD6 DDRDBIT.bit6
#define DDRD_DDRD7 DDRDBIT.bit7
//*****************

#define PINA_PA0 PINABIT.bit0
#define PINA_PA1 PINABIT.bit1
#define PINA_PA2 PINABIT.bit2
#define PINA_PA3 PINABIT.bit3
#define PINA_PA4 PINABIT.bit4
#define PINA_PA5 PINABIT.bit5
#define PINA_PA6 PINABIT.bit6
#define PINA_PA7 PINABIT.bit7

#define PINB_PB0 PINBBIT.bit0
#define PINB_PB1 PINBBIT.bit1
#define PINB_PB2 PINBBIT.bit2
#define PINB_PB3 PINBBIT.bit3
#define PINB_PB4 PINBBIT.bit4
#define PINB_PB5 PINBBIT.bit5
#define PINB_PB6 PINBBIT.bit6
#define PINB_PB7 PINBBIT.bit7

#define PINC_PC0 PINCBIT.bit0
#define PINC_PC1 PINCBIT.bit1
#define PINC_PC2 PINCBIT.bit2
#define PINC_PC3 PINCBIT.bit3
#define PINC_PC4 PINCBIT.bit4
#define PINC_PC5 PINCBIT.bit5
#define PINC_PC6 PINCBIT.bit6
#define PINC_PC7 PINCBIT.bit7

#define PIND_PD0 PINDBIT.bit0
#define PIND_PD1 PINDBIT.bit1
#define PIND_PD2 PINDBIT.bit2
#define PIND_PD3 PINDBIT.bit3
#define PIND_PD4 PINDBIT.bit4
#define PIND_PD5 PINDBIT.bit5
#define PIND_PD6 PINDBIT.bit6
#define PIND_PD7 PINDBIT.bit7

#endif



转载于:https://www.cnblogs.com/pang123hui/archive/2012/01/04/2312373.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/262946.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

c#通过app.manifest使程序 右键 以管理员身份运行

c#通过app.manifest使程序以管理员身份运行 时间:2013-06-27 22:47来源:网络收集本站整理 作者:jtydl 点击: 1175 次微软在Windows Vista开始引入了UAC(用户帐户控制)新技术(点击这儿了解什么是UAC)。当程序执行时需要权限的话&am…

DataList用法

图片以3列形式显示 <asp:DataList ID"myDataList" runat"server" RepeatColumns"3"> <ItemTemplate> <table width"250px" height"200px" border"0px"> …

java 发送 接受 xml请求

二、客户端代码 通过Http Post Xml传递数据&#xff0c;客户端一般是通过URL建立到服务端的连接&#xff0c;向服务端发送xml数据&#xff0c;然后获取服务端的响应并进行解析&#xff1a; Java代码String xmlString "<?xml version1.0 encodinggb2312?>" …

2019.08.08学习整理

2019.08.08学习整理 文件的高级应用 1.可读、可写 rt: 可读、可写wt: 可写、可读at: 可追加、可读# wt with open(36w.txt, wt, encodingutf-8) as fw:print(fw.readable())print(fw.writable())False True # wt with open(36w.txt, wt, encodingutf-8) as fw:print(fw.readabl…

HTML5新标签

<article>标签定义外部的内容。比如来自一个外部的新闻提供者的一篇新的文章&#xff0c;或者来自 blog 的文本&#xff0c;或者是来自论坛的文本。亦或是来自其他外部源内容。 HTML5:<article></article> HTML4:<div></div><aside>标签定…

WD硬盘 C1门 解决办法

不慎我的硬盘是 西数WDC WD10EARS-003BB1 (931 GB) 每天清早来公司 硬盘吱吱嘎嘎启动甚慢&#xff0c;装Windows2003 系统 软件若干&#xff0c;开机时间据金山卫士 测算为7分钟多&#xff0c;让我无比汗颜&#xff0c;且启动后若干分钟什么也干不了&#xff0c;真正能用的时候…

25款操作系统全面接触 [2]

Sun Solaris Sun Microsystems公司早期的操作系统版本Sun OS是基于BSD的。在1993年&#xff0c;他们与AT&T合作&#xff0c;转向了UNIX System V&#xff0c;并发布了称作Solaris.System V release 4的系统&#xff0c;这是一个UNIX System V和BSD的整合体。Solaris系统主…

Windows 10系统永久关闭Windows Defender Antivirus防病毒程序方法

Win R 键运行 gpedit.msc 找到 计算机配置 -> 管理模板 -> Windows 组件 -> Windows Defender 防病毒程序 右边双击 “关闭Windows Defender防病毒”策略 在打开界面选择 “已启用”选项以禁用Windows Defender Antivirus 如果要重新开通则选择 “未配置”选项 转载于…

Hibernate查询缓存

缓存分类&#xff1a; ◆一级缓存Session级 ◆二级缓存SessionFactory级别 JVM级别 Hibernate查询缓存不固定(根据生命周期 来说 不固定) 生命周期&#xff1a; ◆一级缓存 是和 session 会话一直 产生一直消失 ◆二级缓存 是和 sessionFacotry 一致 Hibernate查询缓存 生命周期…

js数组去重、冒泡排序

数组去重&#xff1a; 方法1、双重for循环---最笨的方法 var arr [1, 2, 3,4 ,5,6, 4, 3, 8, 1]function newArrFn (arr) {// 创建一个新的空数组let newArr []for(let i 0;i<arr.length;i){// 设置一个开关&#xff0c;如果是true&#xff0c;就存进去&#xff0c;不是…

Nuget发布Dll

今天要开始写ViewModel了&#xff0c;写完之后系统里的ViewModel都汇总到我这里&#xff0c;然后由我负责ViewModel的发布跟维护&#xff0c;所以Nuget发布Dll就要熟练啦~ 一&#xff0c;安装工具 1&#xff0c;Nuget Package Manager 2,NuGet.exe 下载地址为&#xff1a;http:…

技巧/诀窍:在ASP.NET中重写URL(转)

技巧/诀窍&#xff1a;在ASP.NET中重写URL 【原文地址】Tip/Trick: Url Rewriting with ASP.NET 【原文发表日期】 Monday, February 26, 2007 9:27 PM 经常有人请我指导应该如何动态地“重写”URL&#xff0c;以在他们的ASP.NETweb应用中发布比较干净的URL端点。这个博客帖…

[导入]竟然支持OpenGL ES!

今天意外的发现&#xff0c;原来S60 3rd原生支持OpenGL ES&#xff0c;这下又给我多了乐趣了~~可是很遗憾&#xff0c;我的E50性能不强劲&#xff0c;还是有独立显卡的N93强悍测试达到442 Frames&#xff0c;而我的E50只有可怜的81 Frames。还好&#xff0c;第三版的性能确实要…

2012 winter training @HIT Day 2 解题报告

今天第二天&#xff0c;主要练习二分和枚举。其实我突然发现&#xff0c;当做题突然卡主的时候&#xff0c;不妨想想今天练习的是什么内容…… 传送门http://acm.hit.edu.cn/hoj/contest/view?id100128 Problem A&#xff1a;Crossed Ladders 此题导致本人郁闷一整天。。从哪说…

如何修改myeclipse中web项目的工作路径或默认路径

如何修改myeclipse中web项目的工作路径或默认路径 博客分类&#xff1a; J2EE开发技术指南安装好myeclipse后&#xff0c;第一次启动myeclipse时&#xff0c;都会弹出会弹出Workspace Launcher对话框&#xff0c;叫你设置myeclipse工作路径。通常我们设置完了后&#xff0c;为了…

FreeRTOS操作系统,在按键中断函数中恢复被挂起的任务,程序卡死的原因和解决办法...

出现问题场景&#xff1a;作为刚接触FreeRTOS实时操作系统的菜鸟&#xff0c;我在练习一个程序功能&#xff1a;按键3按下&#xff0c;将LED闪烁的任务挂起&#xff1b;按键4按下&#xff0c;将LED闪烁的任务恢复到就绪。按键使用外部中断。恢复就绪的语句是xTaskResumeFromISR…

无法连接到远程的SQL SERVER2000

1、先保证ping通 2、在dos下写入telnet ip 1433不会报错 3、用ip连如企业管理器&#xff1a; 企业管理器-->右键SQlserver组-->新建sqlserver注册-->下一步-->写入远程实例名&#xff08;IP,机器名&#xff09;-->下一步-->…

妙趣横生算法 3:寻找相同元素的指针

实例说明 在已知两个从小到大的有序的数表中寻找出现的相同元素在第一个数表中的指针。 运行结果 实例解析 设两个数表的首元素指针分别为pa和pb,两个数表分别有元素an和bn个。另外&#xff0c;引入两个指针变量ca和cb,分别指向两个数表的当前访问元素。由于两个数表从小到大有…

PostgreSQL学习手册(PL/pgSQL过程语言)【转】

原文http://www.cnblogs.com/stephen-liu74/archive/2012/06/06/2312759.html 一、概述&#xff1a; PL/pgSQL函数在第一次被调用时&#xff0c;其函数内的源代码(文本)将被解析为二进制指令树&#xff0c;但是函数内的表达式和SQL命令只有在首次用到它们的时候&#xff0c;…

Nginx 笔记与总结(14)expires 缓存设置

设置缓存&#xff0c;可以提高网站性能。 当网站的部分内容&#xff0c;比如新闻站的图片&#xff0c;一旦发布就不太可能发生更改&#xff0c;此时需要用户在访问一次页面之后&#xff0c;把该页面的图片缓存在用户的浏览器端一段时间&#xff0c;就可以用到 nginx 的 expires…