代码搜索结果

找到约 10,000 项符合 C 的代码

c51gui.plg

礦ision3 Build Log Project: E:\ISIS\GUI\C51GUI.uv2 Project File Date: 09/05/2007 Output: Build target 'Target 1' Target has no object modules

func_dwt.m

function [I_W , S] = func_DWT(I, level, Lo_D, Hi_D); % Matlab implementation of SPIHT (without Arithmatic coding stage) % % Wavelet decomposition % % input: I : input image % level

dclabc_c.cpp

//--------------------------------------------------------------------------- #include #pragma hdrstop USERES("dclABC_c.res"); USEPACKAGE("VCL50.bpi"); USEPACKAGE("vclx50.bpi"); USEPACKA

dclabc_c.cpp

//--------------------------------------------------------------------------- #include #pragma hdrstop USERES("dclABC_c.res"); USEPACKAGE("VCL40.bpi"); USEPACKAGE("vclx40.bpi"); USEPACKA

cstartup_sam7.c

//*---------------------------------------------------------------------------- //* ATMEL Microcontroller Software Support - ROUSSET - //*-------------------------------------------------

shizhong.plg

构造目标 'Target 1' 正在编绎 Text2.c... .\Text2.c(1): 错误 318: can't open file 'AT89C51.H' .\TEXT2.C(3): 错误 C202: 'P0': undefined identifier .\TEXT2.C(4): 错误 C202: 'P0': undefined identifier .\TEXT2.C(5): 错误

说明.txt

此实验为AT2402实验。从地址0x80开始写入0到9,然后再从AT24C02中读入,把读取的数据 发往串口。

说明._tx

此实验为AT2402实验。从地址0x80开始写入0到9,然后再从AT24C02中读入,把读取的数据 发往串口。

i2cbuscode.txt

#include #include #include #define uchar unsigned char uchar mid; #define SCL 0x01 // IIC clock #define SDA 0x02 // IIC data #define true 1 #define false

note.java

//: polymorphism/music/Note.java // Notes to play on musical instruments. package polymorphism.music; public enum Note { MIDDLE_C, C_SHARP, B_FLAT; // Etc. } ///:~