博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Arduino101学习笔记(十二)—— 101定时器中断
阅读量:6220 次
发布时间:2019-06-21

本文共 3870 字,大约阅读时间需要 12 分钟。

一、API

1、开定时器中断

//*********************************************************************************************//函数名称:CurieTimerOne.start(int timerPeriodUsec, userCallBack)//输入参数:timerPeriodUsec:: 多少微妙产生中断//                  userCallBack      : 中断函数//函数返回:无//函数功能:开定时器中断//*********************************************************************************************CurieTimerOne.start(int timerPeriodUsec, userCallBack);

 

2、重定义定时器时间

//*********************************************************************************************//函数名称:CurieTimerOne.restart(int timerPeriodUsec)//输入参数:timerPeriodUsec:: 多少微妙产生中断//函数返回:无//函数功能:重开定时器中断时间//*********************************************************************************************CurieTimerOne.restart(int timerPeriodUsec);

 

3、关中断,恢复为上电状态

//*********************************************************************************************//函数名称:CurieTimerOne.kill()//输入参数:无//函数返回:无//函数功能:关中断//*********************************************************************************************CurieTimerOne.kill();

 

4、重配置定时器中断函数

//*********************************************************************************************//函数名称:CurieTimerOne.attachInterrupt(userCallBack)//输入参数:userCallBack:中断函数//函数返回:无//函数功能:配置中断函数//*********************************************************************************************CurieTimerOne.attachInterrupt(userCallBack);

 

5、取消配置此中断函数,但定时器不停止

//*********************************************************************************************//函数名称:CurieTimerOne.detachInterrupt()//输入参数:无//函数返回:无//函数功能:取消配置中断函数//*********************************************************************************************CurieTimerOne.detachInterrupt();

 

6、返回触发的中断次数

//*********************************************************************************************//函数名称:CurieTimerOne.readTickCount()
//输入参数:无//函数返回:中断次数//函数功能:返回触发的中断次数//*********************************************************************************************CurieTimerOne.readTickCount();

 

7、重置中断次数

//*********************************************************************************************//函数名称:rdRstTickCount()//输入参数:无//函数返回:中断次数//函数功能:返回触发的中断次数并重置//*********************************************************************************************rdRstTickCount();

 

8、暂停定时器中断

//*********************************************************************************************//函数名称:CurieTimerOne.pause()//输入参数:无//函数返回:无//函数功能:暂停定时器中断//*********************************************************************************************CurieTimerOne.pause();

 

9、PWM生成

//*********************************************************************************************//函数名称:CurieTimerOne.pwmStart(int outputPin, int dutyRange, unsigned int periodUsec) //输入参数:outputPin 输出管脚//                 dutyRange  范围是0到1023,对应0到100占空比//                 periodUsec : Hz=(periodUsec/1000000) //函数返回:无//函数功能:PWM//*********************************************************************************************CurieTimerOne.pwmStart(int outputPin, int dutyRange, unsigned int periodUsec) ;//*********************************************************************************************//函数名称:CurieTimerOne.pwmStart(int outputPin, double dutyPercentage, unsigned int periodUsec)//输入参数:outputPin 输出管脚//                 dutyPercentage, 占空比//                 periodUsec : Hz=(periodUsec/1000000) //函数返回:无//函数功能:PWM//*********************************************************************************************CurieTimerOne.pwmStart(int outputPin, double dutyPercentage, unsigned int periodUsec) ;

 

10、关PWM,设置管脚状态为LOW

//*********************************************************************************************//函数名称:CurieTimerOne.pwmStop()//输入参数:无//函数返回:无//函数功能:关PWM//*********************************************************************************************CurieTimerOne.pwmStop() ;

转载地址:http://ttoja.baihongyu.com/

你可能感兴趣的文章
java路径Java开发中获得非Web项目的当前项目路径
查看>>
【工具使用系列】关于 MATLAB 遗传算法与直接搜索工具箱,你需要知道的事
查看>>
Kali-linux Arpspoof工具
查看>>
PDF文档页面如何重新排版?
查看>>
基于http协议使用protobuf进行前后端交互
查看>>
bash腳本編程之三 条件判断及算数运算
查看>>
php cookie
查看>>
linux下redis安装
查看>>
弃 Java 而使用 Kotlin 的你后悔了吗?| kotlin将会是最好的开发语言
查看>>
JavaScript 数据类型
查看>>
量子通信和大数据最有市场突破前景
查看>>
StringBuilder用法小结
查看>>
对‘初学者应该选择哪种编程语言’的回答——计算机达人成长之路(38)
查看>>
如何申请开通微信多客服功能
查看>>
Sr_C++_Engineer_(LBS_Engine@Global Map Dept.)
查看>>
非监督学习算法:异常检测
查看>>
App开发中甲乙方冲突会闹出啥后果?H5 APP 开发可以改变现状吗
查看>>
jquery的checkbox,radio,select等方法总结
查看>>
Linux coredump
查看>>
Ubuntu 10.04安装水晶(Mercury)无线网卡驱动
查看>>