代码搜索:DSP接口

找到约 10,000 项符合「DSP接口」的源代码

代码结果 10,000
www.eeworm.com/read/454821/7382550

mak iic接口读写.mak

CC = iccavr CFLAGS = -e -D__ICC_VERSION="7.14C" -DATMega8 -l -g -Mavr_enhanced_small -Wa-W ASFLAGS = $(CFLAGS) -Wa-g LFLAGS = -g -e:0x2000 -Wl-W -bfunc_lit:0x26.0x2000 -dram_end:0x45f -bdata:0
www.eeworm.com/read/454821/7382552

s iic接口读写.s

.module IIC接口读写.c .area text(rom, con, rel) .dbfile E:\xiaozhiyong2009\设计资料\项目设计\ICCAVR_mega8_C\ICCAVR_mega8_IIC接口读写\IIC接口读写.c .dbfunc e port_init _port_init fV .even _port_init:: .dbline
www.eeworm.com/read/454821/7382553

_c iic接口读写._c

//ICC-AVR application builder : 2009-3-12 17:05:04 // Target : M8 // Crystal: 8.0000Mhz #include #include void port_init(void) { PORTB = 0x00; DDRB = 0x00; PORTC
www.eeworm.com/read/451891/7454696

java 接口的继承.java

//接口的继承 interface Inter1 { final int M=234; public abstract void f(int x); public abstract void g(int x,int y); } interface Inter_ extends Inter1 { public abstract double h(double x); }
www.eeworm.com/read/445134/7598648

txt 接口回调.txt

接口回调: 1.与对象的上转型一样; interface A; A a; //声明接口变量; class B implement A; a=new B(); //接口变量中存放对象的引用; a.f(); //实现接口回调; 2.接口回调后的变量可以作为参数使用,目的是使用回调后的方法;