ChinaUnix.net
相关文章推荐:

avr timer1 pwm 精度

unix下有没有timer这种东西。我想在程序中定时执行某函数。

by 流言飞语 - C/C++ - 2005-09-27 16:41:20 阅读(1797) 回复(5)

相关讨论

ICC avr 过渡到 avr STUDIO时要注意的几个:

1.头文件更改

ICCavr使用的“#include <iom16v.h>”更改为“#include <avr/io.h>”

在ICC中使用不同MCU类型的头文件是不同的,但是在avr studio中avr/io.h都包含了不同MCU的头文件

2.avr studio中延时函数可直接使用“#include <util/delay.h>”头文件中的延时函数:

void _delay_us (double __us...

by apple_guet - 移动操作系统 - 2011-12-22 08:51:09 阅读(915) 回复(0)
by OliverChina - 移动操作系统 - 2011-01-07 15:53:20 阅读(541) 回复(0)

本人刚学嵌入式驱动程序的编写,用的是s3c2410,开发平台是博创的UP-TECH 2410S,下面是启动pwm寄存器的设置,然后去驱动直流电动机,但电动机不转,请各位大侠指教!!! 谢谢^_^ #define tout01_enable() \ ({ GPBCON &=~ 0xf; \ GPBCON |= 0xa; }) #define tout01_disable() \ ({ GPBCON &=~ 0xf; \ GPBCON |= 0x5; \ GPBUP &=~0x3; }) /* deafault divider value=1/2 */ /* dea...

by mxfszy - 驱动开发 - 2008-04-16 08:58:18 阅读(1752) 回复(0)

.pwm是什么文件 什么语言?

by ICANFLYISURE - Java - 2003-11-25 10:55:36 阅读(921) 回复(0)

51 系列
The Intel MCS-51 is a Harvard architecture, single chip microcontroller (µC) series which was developed by Intel in 1980 for use in embedded systems.(ref: http://en.wikipedia.org/wiki/Intel_MCS-51 )

注意51系列单片机都是用的51内核,其他外设是不同厂家...

by deafguy - 数据安全 - 2011-12-21 08:43:27 阅读(963) 回复(0)

linux avr assembler Compiles code written for Atmels avr DOS assembler (see notice).Super-set of Atmel avr assembler (few features added).Generates Intel Hex, Motorola S-record, Generic and binary output.Atmel object files compatible with Atmel's avr Studio.More than 100 warning/error messages.'C' like escape characters in char/string literals ('\n', '\t', ...).Macros in macros.Free software (rel...

by chenyuehao - Linux文档专区 - 2007-03-27 22:16:55 阅读(492) 回复(0)

;************************************************************ ; Institute of Automation, Chinese Academy of Sciences ;File Name: Init.s ;Description: timer interrupt test. ;Author: JuGuang,Lee ;Date: ;************************************************************** IOPMOD EQU 0x3FF5000 ;I/O口模式寄存器 IOPDATA EQU 0x3FF5008 ;I/O口数据寄存器 TMOD EQU 0x3FF6000 ;定时器模式寄存器 TDATA0 EQU 0x3FF6...

by zls0315 - Linux文档专区 - 2008-04-28 16:35:10 阅读(605) 回复(0)

Hi! 最近发现dns服务器的messages里面出现了很多的POKED timer的告警,是named发出的,那位DX能帮助解释一下其中的原因,是否会有什么影响? 我的系统是solaris9+bind9.3.2, 谢谢!

by ree - 服务器应用 - 2006-08-23 13:51:10 阅读(2432) 回复(0)

各位大侠,在UNIX下有没有类似于WINDOWS(VC)下的timer事件的功能函数,或者说回调吗?怎么做! 谢谢!

by liuqingzhu - C/C++ - 2003-08-28 02:56:11 阅读(1687) 回复(7)

//======================================================================

by luozhiyong131 - 移动操作系统 - 2011-12-22 08:51:04 阅读(615) 回复(0)