代码搜索:RF
找到约 8,431 项符合「RF」的源代码
代码结果 8,431
www.eeworm.com/read/269312/11101277
c main.c
//----------------------------------------------------------------------------
// RF Lab
// ATC 2006
// Participant's Code
//
// Presenter: K. Quiring
// Texas Instruments, Inc.
// Novem
www.eeworm.com/read/192427/8381931
h pic_setting.h
#include
__CONFIG(XT&WDTDIS&PWRTDIS&BORDIS&LVPDIS);//&PROTECT);
//__CONFIG(XT&WDTDIS&PWRTDIS&BORDIS&LVPDIS&DEBUGEN); //调试模式
#define RACNF_RF4 0x06 //FOR CC1100 AND CC2500
#define RACNF_RF2
www.eeworm.com/read/429638/8797426
c nrf905.c
#include
#include
#include "nRF905_Config.h"
#include "nRF905.h"
unsigned char ReceiveBuffer[BUF_SIZE]; // RF接收缓冲区
unsigned char SendBuffer[BUF_SIZE]; // RF发送缓冲区
www.eeworm.com/read/163494/10157153
e3_selfcompressed
#!/bin/sh
skip=20
set -C
umask=`umask`
umask 77
xdir=`mktemp -d /tmp/gz.XXXXXX` || {
echo 'cannot create tmpdir' >&2
exit 1
}
trap "rm -rf $xdir; exit 1" 1 2 3 5 10 13 15
trap "rm -rf $xdir" 0
prog=
www.eeworm.com/read/466084/7044257
c jpcap_ip.c
#include
#ifndef WIN32
#else
#include
#endif
#include
#include
#include"Jpcap_sub.h"
#ifndef IP_RF
#define IP_RF 0x8000
#endif
www.eeworm.com/read/139776/13133684
c ellf.c
#include
#define NRANSI
#include "nrutil.h"
float ellf(float phi, float ak)
{
float rf(float x, float y, float z);
float s;
s=sin(phi);
return s*rf(SQR(cos(phi)),(1.0-s*ak)*(1.0+s*ak),
www.eeworm.com/read/322686/13371464
makefile
CC = gcc
CFLAGS = `pkg-config --cflags --libs gtk+-2.0 gthread-2.0`
all:
$(CC) -o 3GTest 3GTestRun.c 3GTestGUI.c libdtmux.a $(CFLAGS)
clean:
rm -f 3GTest
rm -rf *~
rm -rf *.o
www.eeworm.com/read/309357/13673398
h pic_setting.h
#include
//__CONFIG(XT&WDTDIS&PWRTDIS&BORDIS&LVPDIS);//&PROTECT);
__CONFIG(XT&WDTDIS&PWRTDIS&BORDIS&LVPDIS&DEBUGEN); //调试模式
#define RACNF_RF4 0x06 //FOR CC1100 AND CC2500
#define RACNF_RF2
www.eeworm.com/read/124989/6034765
makefile
CPPFLAGS = -x assembler-with-cpp
AS86 = as86
LD86 = ld86
OBJDUMP = objdump
.SUFFIXES: .s86 .asm .aout .img
all: flashimg.img
clean:
rm -rf *.o *.s86 *.aout *.img
realclean: clean
rm -rf *.img
www.eeworm.com/read/124347/6053009
newsym
#!/bin/sh -x
lib=$1; shift
as=$1; shift
ar=$1; shift
ranlib=$1; shift
rm -rf newsym.dir
trap "rm -rf newsym.dir" 0 1 2 15
mkdir newsym.dir
while [ -n "$1" ]; do
newsym=$1; shift
oldsym=$1; shi