代码搜索:AVR UART 232
找到约 10,000 项符合「AVR UART 232」的源代码
代码结果 10,000
www.eeworm.com/read/466157/7039901
inc avr.inc
;------------------------------------------------;
; Constants
.equ RAMTOP = 0x60 ; Except for M64/128/162/169
.equ RAMTOP100 = 0x100 ; For only M64/128/162/169
.equ bit0 = 0b00000001
.equ
www.eeworm.com/read/457715/7318865
dll avr.dll
www.eeworm.com/read/454094/7398944
exe avr.exe
www.eeworm.com/read/449107/7518284
lib avr.lib
www.eeworm.com/read/438790/7726939
__avr_gdbinit
define reset
SIGNAL SIGHUP
end
file main.elf
target remote localhost:4242
break main
www.eeworm.com/read/438309/7732953
awk avr.awk
BEGIN { FS = " "} { nl++ } { s=s+$1} END {print "average:" s/nl}
www.eeworm.com/read/434886/7800515
c avr程序.c
这个芯片怎么说呢!比较贵!!但性能比较不错!
但就是不知道怎么标定(我想看看到底准不准,实践出真理)!!
下面是用mega8改写的程序,在测量程序里我改了一下读取温、湿度的顺序,因为按照原程序的顺序读出来结果不正确,改了后就这正确了(这是没修改的)。有什么问题大家一起讨论。QQ:48801015
/******************************************** ...
www.eeworm.com/read/299959/7818031
avr led.avr
.INCLUDE "8515DEF.INC" ;CPU配置文件
.ORG $0000
RJMP RESET ;上电复位跳转到主程序
.ORG $0013 ;代码段定位,跳过中断区
RESET:
LDI R16,LOW(RAMEND) ;设置堆栈指针
OUT SPL,R16
LDI R16,HIGH(RAMEND)
OUT SPH,R16
www.eeworm.com/read/246464/12723515
dll avr.dll
www.eeworm.com/read/144931/12761660
inc avr.inc
; Macro file to translate SCCAVR assembler output
; into AVR instructions.
; Ron Kreymborg
ldix macro val
ldi r27,high(val)
ldi r26,low(val)
endm
ldiy macro val
ldi r29,high(val)
ldi