⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tosthread_slcs_types.h

📁 tinyos-2.x.rar
💻 H
字号:
/*
 * Copyright (c) 2008 Johns Hopkins University.
 * All rights reserved.
 *
 * Permission to use, copy, modify, and distribute this software and its
 * documentation for any purpose, without fee, and without written
 * agreement is hereby granted, provided that the above copyright
 * notice, the (updated) modification history and the author appear in
 * all copies of this source code.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, LOSS OF USE, DATA,
 * OR PROFITS) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
 * THE POSSIBILITY OF SUCH DAMAGE.
*/

/**
 * @author Chieh-Jan Mike Liang <cliang4@cs.jhu.edu>
 */

#ifndef _TOSTHREAD_SLCS_TYPES_H
#define _TOSTHREAD_SLCS_TYPES_H

#include "slcs_types.h"

struct addr fun[] = {
  
  {tosthread_sleep}, {tosthread_create},
    
  {led0On}, {led1On}, {led2On},
  {led0Off}, {led1Off}, {led2Off},
  {led0Toggle}, {led1Toggle}, {led2Toggle},
  
  {amSerialStart}, {amSerialStop}, {amSerialReceive},
  {amSerialSend}, {amSerialLocalAddress}, {amSerialGetLocalGroup},
  {amSerialGetDestination}, {amSerialGetSource}, {amSerialSetDestination},
  {amSerialSetSource}, {amSerialIsForMe}, {amSerialGetType},
  {amSerialSetType}, {amSerialGetGroup}, {amSerialSetGroup},
  {serialClear}, {serialGetPayloadLength}, {serialSetPayloadLength},
  {serialMaxPayloadLength}, {serialGetPayload}, {serialRequestAck},
  {serialNoAck}, {serialWasAcked},
  
  {amRadioStart}, {amRadioStop}, {amRadioReceive},
  {amRadioSend}, {amRadioGetLocalAddress}, {amRadioGetLocalGroup},
  {amRadioGetDestination}, {amRadioGetSource}, {amRadioSetDestination},
  {amRadioSetSource}, {amRadioIsForMe}, {amRadioGetType},
  {amRadioSetType}, {amRadioGetGroup}, {amRadioSetGroup},
  {radioClear}, {radioGetPayloadLength}, {radioSetPayloadLength},
  {radioMaxPayloadLength}, {radioGetPayload}, {radioRequestAck},
  {radioNoAck}, {radioWasAcked},
    
  {semaphore_reset}, {semaphore_acquire}, {semaphore_release},

  {barrier_reset}, {barrier_block}, {barrier_isBlocking},

  {condvar_init}, {condvar_wait}, {condvar_signalNext},
  {condvar_signalAll}, {condvar_isBlocking},

  {mutex_init}, {mutex_lock}, {mutex_unlock},

  {volumeBlockRead}, {volumeBlockWrite}, {volumeBlockCrc},
  {volumeBlockErase}, {volumeBlockSync},

  {refcounter_init}, {refcounter_increment}, {refcounter_decrement},
  {refcounter_waitOnValue}, {refcounter_count},
  
  {amRadioSnoop},

  {queue_init}, {queue_clear}, {queue_enqueue},
  {queue_dequeue}, {queue_remove}, {queue_size},
  {queue_is_empty},

  {sensirionSht11_humidity_read}, {sensirionSht11_humidity_getNumBits}, {sensirionSht11_temperature_read},
  {sensirionSht11_temperature_getNumBits},
  
  {hamamatsuS10871_tsr_read}, {hamamatsuS10871_tsr_readStream}, {hamamatsuS10871_tsr_getNumBits},
  
  {hamamatsuS1087_par_read}, {hamamatsuS1087_par_readStream}, {hamamatsuS1087_par_getNumBits},
  
  {volumeLogRead}, {volumeLogCurrentReadOffset}, {volumeLogSeek},
  {volumeLogGetSize},
  
  {volumeLogAppend}, {volumeLogCurrentWriteOffset}, {volumeLogErase},
  {volumeLogSync},
  
  {getLeds}, {setLeds},

  {div},
  
  {tosthread_join},
  
  {volumeConfigMount}, {volumeConfigRead}, {volumeConfigWrite},
  {volumeConfigCommit}, {volumeConfigGetSize}, {volumeConfigValid}
};

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -