代码搜索:如何学习 TI C2000?

找到约 10,000 项符合「如何学习 TI C2000?」的源代码

代码结果 10,000
www.eeworm.com/read/148511/12461939

txt 13.1.6单片机多机通信.txt

#include #define uchar unsigned char #define SLAVE 0x02 #define NUMB 16 uchar idata rbuffer[16] uchar idata tbuffer[16]={“master transmit”} void error(void) { SBUF=0xff; whi
www.eeworm.com/read/233574/14146665

lkf debug.lkf

-i"c:/ti/c6000/bios/include" -i"c:/ti/c6000/rtdx/include" -i"c:/ti/C6000/dsk6416/include" -i"c:/ti/c6000/xdais/include" -i"c:/ti/c6000/cgtools/include"
www.eeworm.com/read/232500/14194030

c 74164 serial to parallel.c

/****************************** ****74164 serial to parallel**** ******************************/ #include void delay(int count); void main(void) { int i; unsigned char ta
www.eeworm.com/read/130315/14198175

lkf debug.lkf

-i"f:/ti/C5400/bios/include" -i"f:/ti/C5400/dsk5416/include" -i"f:/ti/c5400/rtdx/include" -i"f:/ti/c5400/xdais/include" -i"f:/ti/c5400/cgtools/include"
www.eeworm.com/read/130313/14198324

lkf debug.lkf

-i"f:/ti/C5400/bios/include" -i"f:/ti/C5400/dsk5416/include" -i"f:/ti/c5400/rtdx/include" -i"f:/ti/c5400/xdais/include" -i"f:/ti/c5400/cgtools/include"
www.eeworm.com/read/230452/14288684

txt rs485.txt

#include #define uchar unsigned char #define BN 16 //传送一次的字节数 uchar master(uchar addrs,uchar comnd); uchar SLAVE=0x00; //从机地址 uchar idata rdata[16]; uchar idata tdata[16]={"abc
www.eeworm.com/read/229583/14328798

java threadmonitor.java

/* * @(#)ThreadMonitor.java 1.6 05/12/22 * * Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modificatio
www.eeworm.com/read/225610/14531330

c communicate.c

/********************************************* file communicate.c by sixiangzhe copyright 2007/5/14-2007/5/15 note: please run init_UART() first; *******************************************
www.eeworm.com/read/124802/14537194

c telafft.c

/* *This file is part of tela the Tensor Language. *Copyright(c)1994-1995 Pekka Janhunen */ /* fftpack.C : A set of FFT routines in C. Algorithmically based on Fortran-77 FFTPACK by Paul N
www.eeworm.com/read/225106/14555808

m myidft.m

function idftout=myidft(inputs,Nidft) temp=zeros(1,Nidft); for ti=1:Nidft for kk=0:Nidft-1 temp1=inputs(kk+1)*exp(j*2*pi*(ti-1)*kk/Nidft); temp(ti)=temp(ti)+temp1; end e