在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → TinyOS仿真脚本、实例文件和开发环境.rar

TinyOS仿真脚本、实例文件和开发环境.rar

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:6.64M
  • 下载次数:3
  • 浏览次数:57
  • 发布时间:2021-11-25
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
TinyOS仿真脚本、实例文件和开发环境,用于搭建系统的开发和调试平台,其中还包含经典的TinyOS系统应用例程。
【实例截图】
【核心代码】
4744300845133708215.rar
└── 随书实例文件
├── editplus配置脚本
│   ├── nesc.ACP
│   ├── nesc.STX
│   └── 使用说明.txt
├── TinyOS8051实例
│   ├── tinyos-2.x-contrib
│   │   └── diku
│   │   ├── common
│   │   │   ├── apps
│   │   │   │   ├── BlinkNoTimerTask
│   │   │   │   │   ├── BlinkNoTimerTaskAppC.nc
│   │   │   │   │   ├── BlinkNoTimerTaskC.nc
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── README
│   │   │   │   ├── CompressionTest
│   │   │   │   │   ├── CompressionTestAppC.nc
│   │   │   │   │   ├── CompressionTestM.nc
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── Micro4SerialP.nc
│   │   │   │   │   └── README
│   │   │   │   ├── Echo
│   │   │   │   │   ├── EchoAppC.nc
│   │   │   │   │   ├── EchoP.nc
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── README
│   │   │   │   ├── LogRecorder
│   │   │   │   │   ├── LogRecorderC.nc
│   │   │   │   │   ├── LogRecorderP.nc
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── README
│   │   │   │   ├── Makefile
│   │   │   │   ├── TestAll
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── README
│   │   │   │   │   ├── TestAppC.nc
│   │   │   │   │   └── TestAppP.nc
│   │   │   │   ├── TestLogger
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── README
│   │   │   │   │   ├── TestAppC.nc
│   │   │   │   │   └── TestAppP.nc
│   │   │   │   ├── TestSimpleMac
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── TestAppC.nc
│   │   │   │   │   └── TestAppP.nc
│   │   │   │   ├── TTXDemo
│   │   │   │   │   ├── PC_display
│   │   │   │   │   │   ├── start_meter.sh
│   │   │   │   │   │   ├── trend-20050723
│   │   │   │   │   │   │   ├── AUTHORS
│   │   │   │   │   │   │   ├── color.cc
│   │   │   │   │   │   │   ├── color.hh
│   │   │   │   │   │   │   ├── COPYING
│   │   │   │   │   │   │   ├── defaults.hh
│   │   │   │   │   │   │   ├── gl.hh
│   │   │   │   │   │   │   ├── Makefile
│   │   │   │   │   │   │   ├── NEWS
│   │   │   │   │   │   │   ├── README
│   │   │   │   │   │   │   ├── rr.hh
│   │   │   │   │   │   │   ├── timer.hh
│   │   │   │   │   │   │   ├── TODO
│   │   │   │   │   │   │   └── trend.cc
│   │   │   │   │   │   └── ttxdemo.pl
│   │   │   │   │   ├── README
│   │   │   │   │   ├── SampleForwardBase
│   │   │   │   │   │   ├── Makefile
│   │   │   │   │   │   ├── SampleForwardM.nc
│   │   │   │   │   │   └── SampleForward.nc
│   │   │   │   │   └── SampleForwardNode
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── SampleForwardM.nc
│   │   │   │   │   └── SampleForward.nc
│   │   │   │   └── USBSerialEcho
│   │   │   │   ├── Makefile
│   │   │   │   ├── README
│   │   │   │   ├── USBSerialEchoC.nc
│   │   │   │   └── USBSerialEchoP.nc
│   │   │   ├── lib
│   │   │   │   ├── buffermanager
│   │   │   │   │   ├── BufferManagerEvents.nc
│   │   │   │   │   ├── BufferManager.nc
│   │   │   │   │   ├── FIFOBufferManagerP.nc
│   │   │   │   │   ├── README
│   │   │   │   │   └── SafeBufferManagerP.nc
│   │   │   │   ├── compression
│   │   │   │   │   ├── compressor.h
│   │   │   │   │   ├── CompressorM.nc
│   │   │   │   │   ├── Compressor.nc
│   │   │   │   │   ├── CRC16M.nc
│   │   │   │   │   ├── CRC16.nc
│   │   │   │   │   ├── huffman_diff.h
│   │   │   │   │   ├── huffman.h
│   │   │   │   │   ├── huffman_whole_diff.h
│   │   │   │   │   ├── huffman_whole.h
│   │   │   │   │   ├── lz77_diff.h
│   │   │   │   │   ├── lz77.h
│   │   │   │   │   ├── passthru.h
│   │   │   │   │   ├── README
│   │   │   │   │   └── simple.h
│   │   │   │   ├── logger
│   │   │   │   │   ├── AccelerometerLoggerC.nc
│   │   │   │   │   ├── AccelerometerLoggerP.nc
│   │   │   │   │   ├── cc2430em
│   │   │   │   │   │   ├── HalCC2430LoggerC.nc
│   │   │   │   │   │   └── HalCC2430LoggerP.nc
│   │   │   │   │   ├── FlashAccessLoggerC.nc
│   │   │   │   │   ├── FlashAccessLoggerP.nc
│   │   │   │   │   ├── getTrace.pl
│   │   │   │   │   ├── HalFlashLoggerC.nc
│   │   │   │   │   ├── HalFlashLoggerP.nc
│   │   │   │   │   ├── LoggerC.nc
│   │   │   │   │   ├── LoggerP.nc
│   │   │   │   │   ├── make
│   │   │   │   │   │   ├── flipCPUPin.pl
│   │   │   │   │   │   └── log.extra
│   │   │   │   │   ├── micro4
│   │   │   │   │   │   ├── HALCC2420LoggerC.nc
│   │   │   │   │   │   └── HALCC2420LoggerM.nc
│   │   │   │   │   ├── PinC.nc
│   │   │   │   │   ├── ReadLoggerC.nc
│   │   │   │   │   ├── ReadLoggerP.nc
│   │   │   │   │   ├── README
│   │   │   │   │   ├── SimpleMacAdvLoggerC.nc
│   │   │   │   │   ├── SimpleMacLoggerC.nc
│   │   │   │   │   ├── SimpleMacLoggerP.nc
│   │   │   │   │   └── StarterPinC.nc
│   │   │   │   ├── ReverseGPIOP.nc
│   │   │   │   ├── SerialByteCommToUartStreamC.nc
│   │   │   │   ├── simplemac
│   │   │   │   │   ├── cc2420.h
│   │   │   │   │   ├── HALCC2420.nc
│   │   │   │   │   ├── hplcc2420.h
│   │   │   │   │   ├── packet.h
│   │   │   │   │   ├── README
│   │   │   │   │   ├── SimpleMacM.nc
│   │   │   │   │   └── SimpleMac.nc
│   │   │   │   ├── stdout
│   │   │   │   │   ├── README
│   │   │   │   │   ├── StdNullC.nc
│   │   │   │   │   ├── StdNullM.nc
│   │   │   │   │   ├── StdOutC.nc
│   │   │   │   │   ├── StdOutM.nc
│   │   │   │   │   └── StdOut.nc
│   │   │   │   └── usb
│   │   │   │   ├── PacketComm.nc
│   │   │   │   ├── README
│   │   │   │   ├── usb-cdc.h
│   │   │   │   ├── USBCommunicationClassDeviceC.nc
│   │   │   │   ├── USBCommunicationClassDeviceP.nc
│   │   │   │   ├── USBControlEndpointC.nc
│   │   │   │   ├── USBControlEndpointP.nc
│   │   │   │   ├── USBControl.nc
│   │   │   │   ├── USBDevice.nc
│   │   │   │   ├── USBEndpoint.nc
│   │   │   │   ├── usb.h
│   │   │   │   ├── USBSerialCDCC.nc
│   │   │   │   └── USBSerialCDCP.nc
│   │   │   ├── tools
│   │   │   │   ├── compression
│   │   │   │   │   ├── average
│   │   │   │   │   ├── average.cc
│   │   │   │   │   ├── average.o
│   │   │   │   │   ├── buffer.c
│   │   │   │   │   ├── buffer.h
│   │   │   │   │   ├── buffer_pc.c
│   │   │   │   │   ├── compress
│   │   │   │   │   ├── compress.cc
│   │   │   │   │   ├── compress.o
│   │   │   │   │   ├── compressor.h
│   │   │   │   │   ├── crc.h
│   │   │   │   │   ├── decompress
│   │   │   │   │   ├── decompress.cc
│   │   │   │   │   ├── decompress.o
│   │   │   │   │   ├── frequency
│   │   │   │   │   ├── frequency.cc
│   │   │   │   │   ├── frequency.o
│   │   │   │   │   ├── huffman
│   │   │   │   │   │   ├── freq2.out
│   │   │   │   │   │   ├── freq.out
│   │   │   │   │   │   ├── generate_codes.cc
│   │   │   │   │   │   ├── huffman_comp.c
│   │   │   │   │   │   ├── huffman_decomp.c
│   │   │   │   │   │   ├── huffman_hex_dump.cc
│   │   │   │   │   │   ├── Makefile
│   │   │   │   │   │   └── test.c
│   │   │   │   │   ├── huffman-test
│   │   │   │   │   │   ├── calc_sizes.sh
│   │   │   │   │   │   ├── generate_files.sh
│   │   │   │   │   │   └── Makefile
│   │   │   │   │   ├── lz77
│   │   │   │   │   │   ├── lz77_comp.c
│   │   │   │   │   │   ├── lz77_comp.so
│   │   │   │   │   │   ├── lz77_decomp.c
│   │   │   │   │   │   ├── lz77_decomp.so
│   │   │   │   │   │   ├── lz77_diff_comp.lo
│   │   │   │   │   │   ├── lz77_diff_comp.so
│   │   │   │   │   │   ├── lz77_diff_decomp.lo
│   │   │   │   │   │   ├── lz77_diff_decomp.so
│   │   │   │   │   │   ├── lz77.h
│   │   │   │   │   │   └── Makefile
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── Makefile.rules
│   │   │   │   │   ├── node-comm
│   │   │   │   │   ├── node-comm.cc
│   │   │   │   │   ├── node-comm.hh
│   │   │   │   │   ├── node-comm.o
│   │   │   │   │   ├── node-comm-power.cc
│   │   │   │   │   ├── passthru
│   │   │   │   │   │   ├── Makefile
│   │   │   │   │   │   ├── passthru_comp.c
│   │   │   │   │   │   ├── passthru_comp.so
│   │   │   │   │   │   ├── passthru_decomp.c
│   │   │   │   │   │   ├── passthru_decomp.so
│   │   │   │   │   │   ├── passthru_test_comp.c
│   │   │   │   │   │   ├── passthru_test_comp.so
│   │   │   │   │   │   ├── passthru_test_decomp.c
│   │   │   │   │   │   └── passthru_test_decomp.so
│   │   │   │   │   ├── power-test
│   │   │   │   │   │   ├── change_alg.sh
│   │   │   │   │   │   ├── Makefile
│   │   │   │   │   │   └── power-test.sh
│   │   │   │   │   ├── ratio-test
│   │   │   │   │   │   ├── Makefile
│   │   │   │   │   │   ├── mk-csv-link.sh
│   │   │   │   │   │   ├── sizes_to_csv.sh
│   │   │   │   │   │   └── verify-compression.sh
│   │   │   │   │   ├── README
│   │   │   │   │   └── simple
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── simple_comp.c
│   │   │   │   │   ├── simple_comp.so
│   │   │   │   │   ├── simple_decomp.c
│   │   │   │   │   └── simple_decomp.so
│   │   │   │   └── daq
│   │   │   │   ├── calibrate.c
│   │   │   │   ├── calibrate_magic.c
│   │   │   │   ├── daq_lib.h
│   │   │   │   ├── kernel-driver
│   │   │   │   │   ├── ixpci.h
│   │   │   │   │   ├── ixpci_kernel.h
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── pci1202.c
│   │   │   │   │   ├── pci.c
│   │   │   │   │   └── proc.c
│   │   │   │   ├── Makefile
│   │   │   │   ├── pci1202_lib.c
│   │   │   │   ├── test.c
│   │   │   │   ├── test_setup.c
│   │   │   │   └── view-data.c
│   │   │   └── tos
│   │   │   ├── interfaces
│   │   │   │   ├── Button.nc
│   │   │   │   ├── GpioCounterCapture.nc
│   │   │   │   ├── HalFlash.nc
│   │   │   │   └── SerialControl.nc
│   │   │   └── system
│   │   │   └── tos.h
│   │   ├── env
│   │   ├── index.html
│   │   ├── license.txt
│   │   ├── mcs51
│   │   │   ├── apps
│   │   │   │   └── Makefile
│   │   │   ├── doc
│   │   │   │   ├── ChangeLog
│   │   │   │   ├── README.CIP51
│   │   │   │   └── README.inline
│   │   │   ├── support
│   │   │   │   └── make
│   │   │   │   ├── c8051F340TB.target
│   │   │   │   ├── cc2430em.target
│   │   │   │   ├── mcs51
│   │   │   │   │   ├── C8051F340.bat
│   │   │   │   │   ├── CC2430-F128.bat
│   │   │   │   │   ├── cilly.asm.exe
│   │   │   │   │   ├── cilly.utah.linux.8051.valueset.may.exe
│   │   │   │   │   ├── clean.extra
│   │   │   │   │   ├── cp.extra
│   │   │   │   │   ├── iar-app-project.ewp
│   │   │   │   │   ├── iar-app-workspace.eww
│   │   │   │   │   ├── inline.extra
│   │   │   │   │   ├── Keil.bat
│   │   │   │   │   ├── log.extra
│   │   │   │   │   ├── mangleAppC.pl
│   │   │   │   │   ├── mcs51.rules
│   │   │   │   │   ├── nRF24E1.bat
│   │   │   │   │   ├── README.inline
│   │   │   │   │   ├── startup.a51
│   │   │   │   │   ├── startup.bat
│   │   │   │   │   └── utah-inliner.pl
│   │   │   │   ├── nano.target
│   │   │   │   └── nRF24E1_EVBOARD.target
│   │   │   └── tos
│   │   │   ├── chips
│   │   │   │   ├── cc2430
│   │   │   │   │   ├── adc
│   │   │   │   │   │   ├── AdcC.nc
│   │   │   │   │   │   ├── AdcControl.nc
│   │   │   │   │   │   ├── AdcDmaC.nc
│   │   │   │   │   │   ├── AdcDmaP.nc
│   │   │   │   │   │   ├── Adc.h
│   │   │   │   │   │   ├── AdcP.nc
│   │   │   │   │   │   ├── AdcSequenceDmaC.nc
│   │   │   │   │   │   ├── AdcSequenceDmaP.nc
│   │   │   │   │   │   └── ThreeAxisAccel.nc
│   │   │   │   │   ├── cc2420
│   │   │   │   │   │   ├── AlarmMultiplexC.nc
│   │   │   │   │   │   ├── CC2420ActiveMessageC.nc
│   │   │   │   │   │   ├── CC2420ActiveMessageP.nc
│   │   │   │   │   │   ├── CC2420Config.nc
│   │   │   │   │   │   ├── CC2420ControlC.nc
│   │   │   │   │   │   ├── CC2420ControlP.nc
│   │   │   │   │   │   ├── CC2420CsmaC.nc
│   │   │   │   │   │   ├── CC2420CsmaP.nc
│   │   │   │   │   │   ├── CC2420Fifo.nc
│   │   │   │   │   │   ├── CC2420.h
│   │   │   │   │   │   ├── CC2420PacketC.nc
│   │   │   │   │   │   ├── CC2420Packet.nc
│   │   │   │   │   │   ├── CC2420Power.nc
│   │   │   │   │   │   ├── CC2420Ram.nc
│   │   │   │   │   │   ├── CC2420ReceiveC.nc
│   │   │   │   │   │   ├── CC2420Receive.nc
│   │   │   │   │   │   ├── CC2420ReceiveP.nc
│   │   │   │   │   │   ├── CC2420Register.nc
│   │   │   │   │   │   ├── CC2420SpiC.nc
│   │   │   │   │   │   ├── CC2420SpiP.nc
│   │   │   │   │   │   ├── CC2420Strobe.nc
│   │   │   │   │   │   ├── CC2420TransmitC.nc
│   │   │   │   │   │   ├── CC2420Transmit.nc
│   │   │   │   │   │   ├── CC2420TransmitP.nc
│   │   │   │   │   │   ├── CC2430RegisterToGIOP.nc
│   │   │   │   │   │   ├── HplCC2420AlarmC.nc
│   │   │   │   │   │   ├── HplCC2420AlarmP.nc
│   │   │   │   │   │   ├── HplCC2420PinsC.nc
│   │   │   │   │   │   ├── HplCC2430RadioP.nc
│   │   │   │   │   │   ├── IEEE802154.h
│   │   │   │   │   │   └── README
│   │   │   │   │   ├── CC2430_CSP.h
│   │   │   │   │   ├── dma
│   │   │   │   │   │   ├── DmaC.nc
│   │   │   │   │   │   ├── dma.h
│   │   │   │   │   │   ├── Dma.nc
│   │   │   │   │   │   └── DmaP.nc
│   │   │   │   │   ├── flash
│   │   │   │   │   │   ├── flashErasePage.a51
│   │   │   │   │   │   ├── flashErasePage.bat
│   │   │   │   │   │   ├── flashWritePage.a51
│   │   │   │   │   │   ├── flashWritePage.bat
│   │   │   │   │   │   ├── HalFlashC.nc
│   │   │   │   │   │   └── HalFlashP.nc
│   │   │   │   │   ├── HplCC2430ClockControlP.nc
│   │   │   │   │   ├── interfaces
│   │   │   │   │   │   ├── CC2430ClockControl.nc
│   │   │   │   │   │   ├── HplCC2430Timer16.nc
│   │   │   │   │   │   ├── HplCC2430Timer8.nc
│   │   │   │   │   │   ├── HplCC2430TimerMAC.nc
│   │   │   │   │   │   ├── HplCC2430TimerSleep.nc
│   │   │   │   │   │   └── HplCC2430TimerWDT.nc
│   │   │   │   │   ├── ioCC2430.h
│   │   │   │   │   ├── McuSleepC.nc
│   │   │   │   │   ├── pins
│   │   │   │   │   │   ├── HplCC2430GeneralIOC.nc
│   │   │   │   │   │   └── HplCC2430Interrupt.nc
│   │   │   │   │   ├── radio
│   │   │   │   │   │   ├── HalCC2430RadioC.nc
│   │   │   │   │   │   ├── HalCC2430RadioDmaC.nc
│   │   │   │   │   │   ├── HalCC2430RadioDmaP.nc
│   │   │   │   │   │   ├── HalCC2430RadioP.nc
│   │   │   │   │   │   ├── HplCC2430InterruptsC.nc
│   │   │   │   │   │   ├── HplCC2430RadioC.nc
│   │   │   │   │   │   ├── SimpleMacC.nc
│   │   │   │   │   │   └── SimpleMacDmaC.nc
│   │   │   │   │   ├── RandomMlcgP.nc
│   │   │   │   │   ├── timer
│   │   │   │   │   │   ├── Alarm32khz16C.nc
│   │   │   │   │   │   ├── Alarm32khz32C.nc
│   │   │   │   │   │   ├── AlarmMilli32C.nc
│   │   │   │   │   │   ├── CC2430Timer.h
│   │   │   │   │   │   ├── #Counter32khz16C.nc#
│   │   │   │   │   │   ├── Counter32khz16C.nc
│   │   │   │   │   │   ├── Counter32khz32C.nc
│   │   │   │   │   │   ├── CounterMilli32C.nc
│   │   │   │   │   │   ├── HalCC2430SimpleTimerC.nc
│   │   │   │   │   │   ├── HalCC2430SimpleTimerP.nc
│   │   │   │   │   │   ├── HilTimerMilliC.nc
│   │   │   │   │   │   └── README
│   │   │   │   │   ├── timer_hpl
│   │   │   │   │   │   ├── CC2430Timer1AlarmCounterC.nc
│   │   │   │   │   │   ├── CC2430Timer1AlarmCounterP.nc
│   │   │   │   │   │   ├── HplCC2430Timer1AlarmCounterC.nc
│   │   │   │   │   │   ├── HplCC2430Timer1AlarmCounterP.nc
│   │   │   │   │   │   ├── HplCC2430Timer1P.nc
│   │   │   │   │   │   ├── HplCC2430Timer2P.nc
│   │   │   │   │   │   ├── HplCC2430Timer3P.nc
│   │   │   │   │   │   ├── HplCC2430Timer4P.nc
│   │   │   │   │   │   ├── HplCC2430TimerSleepP.nc
│   │   │   │   │   │   └── HplCC2430TimerWDTP.nc
│   │   │   │   │   └── usart
│   │   │   │   │   ├── HalCC2430SimpleUartC.nc
│   │   │   │   │   ├── HalCC2430SimpleUartP.nc
│   │   │   │   │   └── HplCC2430Usart.nc
│   │   │   │   ├── cip51
│   │   │   │   │   ├── iocip51.h
│   │   │   │   │   ├── McuSleepC.nc
│   │   │   │   │   ├── pins
│   │   │   │   │   │   ├── Hplcip51GeneralIOC.nc
│   │   │   │   │   │   ├── Hplcip51GeneralIOP.nc
│   │   │   │   │   │   ├── Hplcip51IOC.nc
│   │   │   │   │   │   └── Hplcip51IO.nc
│   │   │   │   │   ├── README
│   │   │   │   │   ├── spi
│   │   │   │   │   │   ├── #HalCip51SimpleSPIP.nc#
│   │   │   │   │   │   ├── HalCip51SimpleSPIP.nc
│   │   │   │   │   │   ├── SpiControl.nc
│   │   │   │   │   │   └── spi.h
│   │   │   │   │   ├── uart
│   │   │   │   │   │   ├── Halcip51SimpleUart0P.nc
│   │   │   │   │   │   └── serial.h
│   │   │   │   │   └── usb
│   │   │   │   │   ├── cip51-usb.h
│   │   │   │   │   ├── HilCip51USBP.nc
│   │   │   │   │   └── HplCip51USBEndpoint.nc
│   │   │   │   ├── mcs51
│   │   │   │   │   ├── bits
│   │   │   │   │   │   ├── pthreadtypes.h
│   │   │   │   │   │   ├── sigset.h
│   │   │   │   │   │   └── time.h
│   │   │   │   │   ├── byteorder.h
│   │   │   │   │   ├── ctype.h
│   │   │   │   │   ├── HalMcs51Led.nc
│   │   │   │   │   ├── io8051.h
│   │   │   │   │   ├── io8051.h.defines
│   │   │   │   │   ├── keil_stdint.h
│   │   │   │   │   ├── math.h
│   │   │   │   │   ├── mcs51hardware.h
│   │   │   │   │   ├── McuSleepC.nc
│   │   │   │   │   ├── pins
│   │   │   │   │   │   ├── HplMcs51GeneralIOC.nc
│   │   │   │   │   │   ├── HplMcs51InterruptC.nc
│   │   │   │   │   │   ├── HplMcs51Interrupt.nc
│   │   │   │   │   │   └── HplMcs51InterruptP.nc
│   │   │   │   │   ├── README
│   │   │   │   │   ├── stdarg.h
│   │   │   │   │   ├── stdint.h
│   │   │   │   │   ├── stdio.h
│   │   │   │   │   ├── string.h
│   │   │   │   │   ├── sys
│   │   │   │   │   │   ├── select.h
│   │   │   │   │   │   └── types.h
│   │   │   │   │   ├── time.h
│   │   │   │   │   ├── timer
│   │   │   │   │   │   ├── HplMcs51Counter.nc
│   │   │   │   │   │   ├── HplMcs51TimerP.nc
│   │   │   │   │   │   └── mcs51-timer.h
│   │   │   │   │   ├── Timer.h
│   │   │   │   │   └── unistd.h
│   │   │   │   └── nRF24E1
│   │   │   │   ├── HplnRF24E1GeneralIOC.nc
│   │   │   │   ├── ionRF24E1.h
│   │   │   │   ├── nRF24E1Timer.h
│   │   │   │   ├── timer
│   │   │   │   │   ├── Alarm32khz16C.nc
│   │   │   │   │   ├── Alarm32khz32C.nc
│   │   │   │   │   ├── AlarmMilli32C.nc
│   │   │   │   │   ├── Counter32khz16C.nc
│   │   │   │   │   ├── CounterMilli32C.nc
│   │   │   │   │   ├── HilTimerMilliC.nc
│   │   │   │   │   ├── HplnRF24E1Timer0CounterC.nc
│   │   │   │   │   ├── HplnRF24E1Timer0CounterP.nc
│   │   │   │   │   ├── HplnRF24E1Timer16.nc
│   │   │   │   │   ├── HplnRF24E1Timer2AlarmC.nc
│   │   │   │   │   ├── HplnRF24E1Timer2AlarmP.nc
│   │   │   │   │   └── HplnRF24E1Timer2P.nc
│   │   │   │   └── UART
│   │   │   │   ├── HalnRF24E1SimpleUartC.nc
│   │   │   │   ├── HalnRF24E1SimpleUartP.nc
│   │   │   │   ├── HPLUARTC.nc
│   │   │   │   ├── HPLUART.nc
│   │   │   │   └── HPLUARTP.nc
│   │   │   └── platforms
│   │   │   ├── c8051F340TB
│   │   │   │   ├── Halc8051TBLedPinP.nc
│   │   │   │   ├── hardware.h
│   │   │   │   ├── PlatformC.nc
│   │   │   │   ├── platform.h
│   │   │   │   ├── PlatformLedsC.nc
│   │   │   │   ├── platform_message.h
│   │   │   │   ├── PlatformP.nc
│   │   │   │   ├── PlatformSerialC.nc
│   │   │   │   ├── PlatformSPIC.nc
│   │   │   │   ├── PlatformUSBC.nc
│   │   │   │   └── UartC.nc
│   │   │   ├── cc2430em
│   │   │   │   ├── AccelerometerC.nc
│   │   │   │   ├── AccelerometerM.nc
│   │   │   │   ├── Halcc2430emLedPinP.nc
│   │   │   │   ├── hardware.h
│   │   │   │   ├── LoggerPinsC.nc
│   │   │   │   ├── PlatformC.nc
│   │   │   │   ├── platform.h
│   │   │   │   ├── PlatformLedsC.nc
│   │   │   │   ├── platform_message.h
│   │   │   │   ├── PlatformP.nc
│   │   │   │   ├── PlatformStdOutC.nc
│   │   │   │   ├── README
│   │   │   │   └── UartC.nc
│   │   │   ├── nano
│   │   │   │   ├── hardware.h
│   │   │   │   ├── PlatformC.nc
│   │   │   │   ├── platform.h
│   │   │   │   ├── PlatformLedsC.nc
│   │   │   │   ├── platform_message.h
│   │   │   │   ├── PlatformP.nc
│   │   │   │   └── UartC.nc
│   │   │   └── nRF24E1_EVBOARD
│   │   │   ├── ADCP.nc
│   │   │   ├── HalnRF24E1LedPinP.nc
│   │   │   ├── hardware.h
│   │   │   ├── HPLADCC.nc
│   │   │   ├── HPLADCP.nc
│   │   │   ├── PlatformC.nc
│   │   │   ├── platform.h
│   │   │   ├── PlatformLedsC.nc
│   │   │   ├── PlatformP.nc
│   │   │   ├── PlatformSerialC.nc
│   │   │   └── UartC.nc
│   │   ├── README.txt
│   │   └── sensinode
│   │   ├── apps
│   │   │   ├── Makefile
│   │   │   └── README
│   │   ├── doc
│   │   │   ├── D100-nano-programmer.zip
│   │   │   ├── Nano_fulldatasheet-N120R1.pdf
│   │   │   ├── Nano_rev1_schematics.pdf
│   │   │   ├── README.nano
│   │   │   └── sensinode-manual-hw.pdf
│   │   ├── support
│   │   │   └── make
│   │   │   ├── micro4.target
│   │   │   └── msp_micro4
│   │   │   ├── cp.extra
│   │   │   ├── log.extra
│   │   │   └── msp_micro4.rules
│   │   └── tos
│   │   └── platforms
│   │   └── micro4
│   │   ├── accelerometer
│   │   │   ├── AccelerometerC.nc
│   │   │   ├── HPLU510R1M.nc
│   │   │   └── ThreeAxisAccel.nc
│   │   ├── BusArbitrationC.nc
│   │   ├── BusArbitrationM.nc
│   │   ├── BusArbitration.nc
│   │   ├── flash
│   │   │   ├── FlashAccessC.nc
│   │   │   ├── FlashAccessM.nc
│   │   │   ├── FlashAccess.nc
│   │   │   ├── HALSTM25P40M.nc
│   │   │   ├── HALSTM25P40.nc
│   │   │   ├── HPLSTM25P40M.nc
│   │   │   └── HPLSTM25P40.nc
│   │   ├── GpioCapture32khz32C.nc
│   │   ├── GpioCapture32khz32P.nc
│   │   ├── GpioCaptureC.nc
│   │   ├── HPL1wireC.nc
│   │   ├── hpl1wire.h
│   │   ├── HPL1wireM.nc
│   │   ├── HPL1wire.nc
│   │   ├── HPLSpi.h
│   │   ├── HPLSpiM.nc
│   │   ├── internalflash
│   │   │   ├── HalFlashC.nc
│   │   │   ├── HalFlashP.nc
│   │   │   ├── HplFlash.nc
│   │   │   └── HplFlashP.nc
│   │   ├── LedsC.nc
│   │   ├── Leds.nc
│   │   ├── LedsP.nc
│   │   ├── LoggerPinsC.nc
│   │   ├── Micro4SerialP.nc
│   │   ├── MotePlatformC.nc
│   │   ├── Msp430ClockP.nc
│   │   ├── Msp430Timer32khzMapC.nc
│   │   ├── platform.h
│   │   ├── PlatformLedsC.nc
│   │   ├── PlatformSerialC.nc
│   │   ├── PlatformStdOutC.nc
│   │   ├── PlatformStdOutP.nc
│   │   ├── radio
│   │   │   ├── HALCC2420C.nc
│   │   │   ├── HALCC2420M.nc
│   │   │   ├── HPLCC2420FIFO.nc
│   │   │   ├── HPLCC2420M.nc
│   │   │   ├── HPLCC2420.nc
│   │   │   ├── HPLCC2420RAM.nc
│   │   │   └── HPLCC2420Status.nc
│   │   ├── SimpleMacC.nc
│   │   ├── SpiC.nc
│   │   ├── Spi.nc
│   │   └── UartC.nc
│   └── 使用说明.txt
├── tinyos环境配置与测试文件
│   ├── Blink.py
│   ├── HelloWorld.java
│   ├── tinyos.sh
│   └── 使用说明.txt
├── Tossim仿真脚本
│   ├── meyer-heavy.txt
│   ├── packets.py
│   ├── test.py
│   ├── topoconfig.txt
│   ├── topo.txt
│   ├── variables.py
│   └── 使用说明.txt
├── yamp平台实例
│   ├── yamp
│   │   ├── hardware.h
│   │   ├── PlatformC.nc
│   │   ├── platform.h
│   │   ├── PlatformLedsC.nc
│   │   └── PlatformP.nc
│   ├── yamp.target
│   └── 使用说明.txt
├── 实例1-基于TSL2550的光照采样
│   ├── TestTsl2550
│   │   ├── build
│   │   │   └── micaz
│   │   │   ├── ident_flags.txt
│   │   │   ├── main.exe
│   │   │   ├── main.ihex
│   │   │   ├── main.srec
│   │   │   ├── tos_image.xml
│   │   │   └── wiring-check.xml
│   │   ├── Makefile
│   │   ├── TestTSL2550AppC.nc
│   │   └── TestTSL2550.nc
│   ├── tsl2550
│   │   ├── HalTSL2550C.nc
│   │   ├── TSL2550C.nc
│   │   ├── TSL2550.h
│   │   ├── TSL2550LogicP.nc
│   │   ├── TSL2550.nc
│   │   └── TSL2550ReaderP.nc
│   └── 使用说明.txt
├── 实例2-基于GSM模块短信传输
│   ├── TestGSM
│   │   ├── Atcmd.nc
│   │   ├── build
│   │   │   └── micaz
│   │   │   ├── app.c
│   │   │   ├── ident_flags.txt
│   │   │   ├── main.exe
│   │   │   ├── main.ihex
│   │   │   ├── main.srec
│   │   │   ├── tos_image.xml
│   │   │   └── wiring-check.xml
│   │   ├── GsmC.nc
│   │   ├── Gsm.h
│   │   ├── GsmP.nc
│   │   ├── Makefile
│   │   ├── README.txt
│   │   ├── smsdebug
│   │   ├── TestGsmAppC.nc
│   │   └── TestGsmC.nc
│   └── 使用说明.txt
└── 实例3-基于蚁群算法的路由协议
├── antbasic
│   ├── AntRoutingC.nc
│   ├── AntRouting.h
│   ├── AntRoutingP.nc
│   ├── app.xml
│   ├── BatteryInfo.nc
│   ├── linkgain100.out
│   ├── log2.txt
│   ├── log.txt
│   ├── Makefile
│   ├── meyer-heavy.txt
│   ├── python.exe.stackdump
│   ├── simbuild
│   │   └── micaz
│   │   ├── app.c
│   │   ├── c-support.o
│   │   ├── ident_flags.txt
│   │   ├── pytossim.o
│   │   ├── sim.o
│   │   └── tossim.o
│   ├── TestAntAppC.nc
│   ├── TestAntC.nc
│   ├── TestAnt.h
│   ├── testgrid100.py
│   ├── testgrid.py
│   ├── topoconfig.txt
│   ├── topology100.out
│   ├── _TOSSIM.dll
│   ├── TOSSIM.py
│   └── TOSSIM.pyc
└── 使用说明.txt

111 directories, 588 files

标签:

实例下载地址

TinyOS仿真脚本、实例文件和开发环境.rar

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警