代码搜索:tinyOS
找到约 3,275 项符合「tinyOS」的源代码
代码结果 3,275
www.eeworm.com/read/383940/2609019
burn-net
#!/bin/bash
TOS_DELUGE=`type -p tos-deluge`
if [[ ! -x ${TOS_DELUGE} ]] ; then
TOS_DELUGE=../../../../tools/tinyos/misc/tos-deluge
fi
if [ $# -ne 2 ]; then
echo "Usage: $0
www.eeworm.com/read/155397/5622382
makefile
TOS = $(shell ncc -print-tosdir)
PACKAGE = net.tinyos.message
MIG = mig java
ROOT = ../../..
include $(ROOT)/Makefile.include
BaseTOSMsg.java:
$(MIG) -java-classname=$(PACKAGE).BaseTOSMsg $(TOS)/s
www.eeworm.com/read/155397/5622419
java env.java
// $Id: Env.java,v 1.3.4.1 2003/08/18 22:09:45 cssharp Exp $
package net.tinyos.util;
/**
* The Env class provides an implementation of
* getenv that actually works, unli
www.eeworm.com/read/155397/5622422
install env.install
To install the JNI library for getenv (on x86 Linux and Windows with cygwin):
cd /tools/java/jni
make install
(on Linux you'll have to do this last step as root)
If thi
www.eeworm.com/read/155397/5622558
java discmodel.java
// $Id: DiscModel.java,v 1.1.4.1 2003/08/18 22:09:43 cssharp Exp $
package net.tinyos.sim;
public class DiscModel implements PropagationModel {
private double radius;
public DiscModel(double ra
www.eeworm.com/read/137691/5819923
java motelist.java
package net.tinyos.task.spy;
import java.awt.*;
import java.awt.event.*;
import java.util.*;
class MoteList extends Thread {
Tool parent;
Vector motes; // sorted list of Mote
MoteList(T
www.eeworm.com/read/137691/5819947
java pingcmd.java
package net.tinyos.task.awtfield;
import java.awt.*;
import java.awt.event.*;
import java.text.*;
class PingCmd extends SimpleCommand {
PingCmd(Tool parent) {
super(parent, "Ping");
parent.add
www.eeworm.com/read/137691/5820028
makefile
TOS = $(shell ncc -print-tosdir)
PACKAGE = net.tinyos.oscope
APP = $(TOS)/../apps/Oscilloscope
MIG = mig java
# List of message classes to build
MSGS = OscopeMsg.java OscopeResetMsg.java
INITIAL_TA
www.eeworm.com/read/116008/6114266
makefile
TOS = $(shell ncc -print-tosdir)
PACKAGE = net.tinyos.vm_asm
MIG = mig java
# List of message classes to build
MSGS = BombillaErrorMsg.java BombillaCapsuleMsg.java BombillaDataMsg.java
INITIAL_TARGE
www.eeworm.com/read/116008/6114279
makefile
TOS = $(shell ncc -print-tosdir)
PACKAGE = net.tinyos.oscope
APP = $(TOS)/../apps/Diagnostic
MIG = mig java
# List of message classes to build
MSGS = OscopeMsg.java OscopeResetMsg.java DiagRspMsg.ja