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

📄 bombilla.h

📁 用于传感器网络的节点操作系统 TinyOS 结构设计非常有意思
💻 H
字号:
/*									tab:4 * * * "Copyright (c) 2000-2002 The Regents of the University  of California.   * 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 following * two paragraphs and the author appear in all copies of this software. *  * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF * CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *  * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY * AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS * ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS." * *//*									tab:4 *  IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.  By *  downloading, copying, installing or using the software you agree to *  this license.  If you do not agree to this license, do not download, *  install, copy or use the software. * *  Intel Open Source License  * *  Copyright (c) 2002 Intel Corporation  *  All rights reserved.  *  Redistribution and use in source and binary forms, with or without *  modification, are permitted provided that the following conditions are *  met: *  *	Redistributions of source code must retain the above copyright *  notice, this list of conditions and the following disclaimer. *	Redistributions in binary form must reproduce the above copyright *  notice, this list of conditions and the following disclaimer in the *  documentation and/or other materials provided with the distribution. *      Neither the name of the Intel Corporation nor the names of its *  contributors may be used to endorse or promote products derived from *  this software without specific prior written permission. *   *  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 INTEL OR ITS *  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, *  PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR *  PROFITS; OR BUSINESS INTERRUPTION) 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. *  *  *//* Authors:   Philip Levis * History:   created 4/18/2002 *            ported to nesC 6/19/2002 */#ifndef BOMBILLA_TYPES_H_INCLUDED#define BOMBILLA_TYPES_H_INCLUDED#include "list.h"#include <stddef.h>enum {  BOMB_CALLDEPTH    = 8,  BOMB_OPDEPTH      = 16,  BOMB_HEAPSIZE     = 16,  BOMB_MAX_PARALLEL = 4,  BOMB_NUM_YIELDS   = 4};typedef enum {  BOMB_DATA_NONE    = 255,  BOMB_DATA_VALUE   = 0,  BOMB_DATA_PHOTO   = 1,  BOMB_DATA_TEMP    = 2,    BOMB_DATA_MIC     = 3,  BOMB_DATA_MAGX    = 4,  BOMB_DATA_MAGY    = 5,  BOMB_DATA_ACCELX  = 6,  BOMB_DATA_ACCELY  = 7,  BOMB_DATA_END     = 8} BombillaSensorType;typedef enum {  BOMB_TYPE_INVALID = 0,  BOMB_TYPE_VALUE   = 1,  BOMB_TYPE_BUFFER  = 2,  BOMB_TYPE_SENSE   = 4} BombillaDataType;typedef enum {  BOMB_VAR_V = BOMB_TYPE_VALUE,  BOMB_VAR_B = BOMB_TYPE_BUFFER,  BOMB_VAR_S = BOMB_TYPE_SENSE,  BOMB_VAR_VB = BOMB_VAR_V | BOMB_VAR_B,  BOMB_VAR_VS = BOMB_VAR_V | BOMB_VAR_S,  BOMB_VAR_SB = BOMB_VAR_B | BOMB_VAR_S,  BOMB_VAR_VSB = BOMB_VAR_B | BOMB_VAR_S | BOMB_VAR_V,  BOMB_VAR_ALL = BOMB_VAR_B | BOMB_VAR_S | BOMB_VAR_V} BombillaDataCondensed;typedef enum {  BOMB_CAPSULE_FORW = 0x1} BombillaCapsuleOption;typedef enum {  BOMB_CAPSULE_NUM   = 8,  BOMB_CAPSULE_SUB0  = 0,  BOMB_CAPSULE_SUB1  = 1,   BOMB_CAPSULE_SUB2  = 2,   BOMB_CAPSULE_SUB3  = 3,   BOMB_CAPSULE_CLOCK = 64,  BOMB_CAPSULE_SEND  = 65,  BOMB_CAPSULE_RECV  = 66,  BOMB_CAPSULE_ONCE  = 67,  BOMB_CAPSULE_OUTER = 68,  BOMB_CAPSULE_CLOCK_INDEX = 4,  BOMB_CAPSULE_SEND_INDEX  = 5,  BOMB_CAPSULE_RECV_INDEX  = 6,  BOMB_CAPSULE_ONCE_INDEX  = 7,  BOMB_CAPSULE_OUTER_INDEX = 8} BombillaCapsuleType;typedef enum {  BOMB_STATE_HALT        = 0,  BOMB_STATE_SENDING     = 1,  BOMB_STATE_LOG         = 2,  BOMB_STATE_SENSE       = 3,  BOMB_STATE_SEND_WAIT   = 4,  BOMB_STATE_LOG_WAIT    = 5,  BOMB_STATE_SENSE_WAIT  = 6,  BOMB_STATE_LOCK_WAIT   = 7,  BOMB_STATE_RESUMING    = 8,  BOMB_STATE_RUN         = 9} BombillaContextState;typedef enum {  BOMB_ERROR_TRIGGERED                =  0,  BOMB_ERROR_INVALID_RUNNABLE         =  1,  BOMB_ERROR_STACK_OVERFLOW           =  2,  BOMB_ERROR_STACK_UNDERFLOW          =  3,   BOMB_ERROR_BUFFER_OVERFLOW          =  4,  BOMB_ERROR_BUFFER_UNDERFLOW         =  5,  BOMB_ERROR_INDEX_OUT_OF_BOUNDS      =  6,  BOMB_ERROR_INSTRUCTION_RUNOFF       =  7,  BOMB_ERROR_LOCK_INVALID             =  8,  BOMB_ERROR_LOCK_STEAL               =  9,  BOMB_ERROR_UNLOCK_INVALID           = 10,  BOMB_ERROR_QUEUE_ENQUEUE            = 11,  BOMB_ERROR_QUEUE_DEQUEUE            = 12,  BOMB_ERROR_QUEUE_REMOVE             = 13,  BOMB_ERROR_QUEUE_INVALID            = 14,  BOMB_ERROR_RSTACK_OVERFLOW          = 15,  BOMB_ERROR_RSTACK_UNDERFLOW         = 16,   BOMB_ERROR_INVALID_ACCESS           = 17,  BOMB_ERROR_TYPE_CHECK               = 18,  BOMB_ERROR_INVALID_TYPE             = 19,  BOMB_ERROR_INVALID_LOCK             = 20,  BOMB_ERROR_INVALID_INSTRUCTION      = 21} BombillaErrorCode;typedef enum {  BOMB_MAX_NET_ACTIVITY  = 64,  BOMB_PROPAGATE_TIMER   = 737,  BOMB_PROPAGATE_FACTOR  = 0x7f   // 127} BombillaCapsulePropagateConstants;typedef enum {  OPhalt      = 0x00,  OPid        = 0x01,  OPrand      = 0x02,  OPctrue     = 0x03,  OPcfalse    = 0x04,  OPcpush     = 0x05,  OPlogp      = 0x06,  OPbpush0    = 0x07,  OPbpush1    = 0x08,  OPdepth     = 0x09,  OPerr       = 0x0a,  OPret       = 0x0b,  OPcall0     = 0x0c,  OPcall1     = 0x0d,  OPcall2     = 0x0e,  OPcall3     = 0x0f,/* One operand instructions */  OPinv       = 0x10,  OPcpull     = 0x11,  OPnot       = 0x12,  OPlnot      = 0x13,  OPsense     = 0x14,  OPsend      = 0x15,  OPsendr     = 0x16,  OPuart      = 0x17,  OPlogw      = 0x18,  OPbhead     = 0x19,  OPbtail     = 0x1a,  OPbclear    = 0x1b,  OPbsize     = 0x1c,  OPcopy      = 0x1d,  OPpop       = 0x1e,  OPbsorta    = 0x20,  OPbsortd    = 0x21,  OPbfull     = 0x22,  OPputled    = 0x23,  OPcast      = 0x24,  OPunlock    = 0x25,  OPunlockb   = 0x26,  OPpunlock   = 0x27,  OPpunlockb  = 0x28,/* Two-operand instructions */  OPlogwl     = 0x2b,  OPlogr      = 0x2c,  OPbget      = 0x2d,  OPbyank     = 0x2e,/* Special instruction */  OPmotectl   = 0x2f,/* Two operand-instructions */  OPswap      = 0x30,  OPland      = 0x31,  OPlor       = 0x32,  OPand       = 0x33,  OPor        = 0x34,  OPshiftr    = 0x35,  OPshiftl    = 0x36,  OPadd       = 0x37,  OPmod       = 0x38,  OPeq        = 0x39,  OPneq       = 0x3a,  OPlt        = 0x3b,  OPgt        = 0x3c,  OPlte       = 0x3d,  OPgte       = 0x3e,  OPeqtype    = 0x3f,/*   mclass   */  OPgetms     = 0x40,  OPgetmb     = 0x48,  OPsetms     = 0x50,  OPsetmb     = 0x58,  /*  vclass  */  OPgetvar    = 0x60,  OPsetvar    = 0x70,/*   jclass   */  OPjumpc     = 0x80,  OPjumps     = 0xa0,/*   xclass   */  OPpushc     = 0xc0} BombillaInstruction;typedef struct {  list_t queue;} BombillaQueue;typedef struct {  uint16_t usedVars;  BombillaCapsule capsule;} BombillaCapsuleBuffer;typedef struct {  uint8_t type;  uint16_t var;} BombillaSensorVariable;typedef struct {  uint8_t padding;  int16_t var;} BombillaValueVariable;typedef struct {  uint8_t padding;  BombillaDataBuffer* var;} BombillaBufferVariable;typedef struct {  uint8_t type;  union {    BombillaSensorVariable sense;    BombillaValueVariable value;    BombillaBufferVariable buffer;  };} BombillaStackVariable;typedef struct {  BombillaCapsuleBuffer* capsule;  uint8_t pc;} BombillaReturnVariable;typedef struct {  uint8_t sp;  BombillaReturnVariable stack[BOMB_CALLDEPTH];} BombillaReturnStack;typedef struct {  uint8_t sp;  BombillaStackVariable stack[BOMB_OPDEPTH];} BombillaOperandStack;   	 typedef struct {  uint8_t pc;  uint8_t state;  BombillaCapsuleBuffer* capsule;  BombillaCapsuleBuffer* rootCapsule;  uint8_t which;  int16_t condition;  uint16_t heldSet;  uint16_t releaseSet;  uint16_t acquireSet;  uint16_t header[BOMB_HEADERSIZES];  BombillaOperandStack opStack;  BombillaReturnStack rStack;  list_link_t link;  BombillaQueue* queue;  TOS_Msg msg;} BombillaContext;typedef struct {  //char size;  BombillaContext* holder;} BombillaLock;#endif

⌨️ 快捷键说明

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