代码搜索:串行闪存

找到约 5,515 项符合「串行闪存」的源代码

代码结果 5,515
www.eeworm.com/read/162008/10346915

txt crc-16串行实现程序.txt

library ieee; use ieee.std_logic_1164.all; entity crc is port(clk,s_in,reset:in std_logic; q:out std_logic_vector(15 downto 0)); end crc; architecture crc_arch of crc is signal t1,t2,t3:
www.eeworm.com/read/424315/10464662

txt 10.2.2串行口扩展显示.txt

SDISP: MOV R2,#04H MOV R0,#26H LOOP0: MOV A,@R0 ADD A,#0BH MOVC A,@A+PC MOV SBUF,A LOOP1: JNB TI,LOOP1 CLR TI INC R0 DJNZ R2,LOOP0
www.eeworm.com/read/459723/7266090

txt 10.2.2串行口扩展显示.txt

SDISP: MOV R2,#04H MOV R0,#26H LOOP0: MOV A,@R0 ADD A,#0BH MOVC A,@A+PC MOV SBUF,A LOOP1: JNB TI,LOOP1 CLR TI INC R0 DJNZ R2,LOOP0
www.eeworm.com/read/449808/7496271

c 115.2k串行口通信程序.c

//115.2k串行口通信程序,校验方式为简单双向校验, //而且是必要的,因为任何采用中断、crc等的方法 //均很难保证速度和避免错误. //总体速度5KB/秒 //单片机程序 //使用22.1184晶振 unsigned char time,b_break,b_break_3; //35.555ms void int_t0(void) interrupt 1 {
www.eeworm.com/read/439625/7704758

asm 实验九(点对点串行通信1)b.asm

;功能:5*4键盘扫描程序 KEYNAME DATA 28H ;b4~b0位记录按键值 ;b7-作为按键值有效标志,b7为0时,表示b4-b0位中的按键值无效。 ;b7为1时,表示b4-b0位记录的按键值有效,且未尚未处理,不能 ;接受新按键。 ;b6-保留。