代码搜索:ptr

找到约 10,000 项符合「ptr」的源代码

代码结果 10,000
www.eeworm.com/read/486568/6535090

src ptr4000.src

[Files] PTR4000.C nrf2401A.C [Headers] nrf2401A.h config.h [Documents]
www.eeworm.com/read/486568/6535091

s ptr4000.s

.module PTR4000.C .area text(rom, con, rel) .dbfile D:\IccAvr\Pei\PTR4000\PTR4000.C .dbfunc e port_init _port_init fV .even _port_init:: .dbline -1 .dbline 23 ; //ICC-AVR application bu
www.eeworm.com/read/486568/6535092

prj ptr4000.prj

[Compiler Options] Edit1=D:\iccavr\include\ Edit2=D:\iccavr\lib\ Edit8= CheckBox1=0 CheckBox2=1 Edit3= Edit4= Edit11=16 Edit13= ComboBox1=0 Edit9=16384 Edit10=1024 ComboBox2=9 RadioGroup
www.eeworm.com/read/486568/6535094

bcf ptr4000.bcf

[Target] Date=2006-4-4 CPU=M16 ItemIndex=14 [Settings] XDIVEN=0 PLLE=0 cbXtal=11.059 XDIV=0 INT0=0 INT1=0 INT2=0 INT3=0 INT5=0 INT6=0 INT7=0 INT4=0 ISC2=0 ISC1=0 ISC0=0 ISC4=0 I
www.eeworm.com/read/486568/6535097

lis ptr4000.lis

.module PTR4000.C .area text(rom, con, rel) 0000 .dbfile D:\IccAvr\Pei\PTR4000\PTR4000.C 0000 .dbfunc e port_in
www.eeworm.com/read/486568/6535100

lk ptr4000.lk

PTR4000.o nrf2401A.o
www.eeworm.com/read/486568/6535102

_c ptr4000._c

//ICC-AVR application builder : 2006-4-4 11:28:26 // Target : M16 PTR4000模块简单测试 // Crystal: 11.059Mhz #include #include #include "config.h" #include "nrf2401A.h" #de
www.eeworm.com/read/485101/6564227

opt ptr6.opt

### uVision2 Project, (C) Keil Software ### Do not modify ! cExt (*.c) aExt (*.a*; *.src) oExt (*.obj) lExt (*.lib) tExt (*.txt) pExt (*.plm) CppX (*.cpp) DaveTm { 0,0,0,0,0,0,0,0 }
www.eeworm.com/read/481239/6645312

c ptr_demo.c

#include void main(void) { int counter = 10; int *iptr; // Declare pointer value iptr = &counter; // Assign the address printf("Addres in iptr %x Value at
www.eeworm.com/read/481239/6645319

c ptr_upr.c

#include #include char *string_uppercase(char *string) { char *starting_address; starting_address = string; while (*string) toupper(*string++); re