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

📄 app.c

📁 主要用于无线传感网络的编写的书籍.对于初学者有着很大的用处
💻 C
📖 第 1 页 / 共 5 页
字号:
  uint16_t addr;  uint8_t type;  uint8_t group;  uint8_t length;  int8_t data[29];  uint16_t crc;  uint16_t strength;  uint8_t ack;  uint16_t time;  uint8_t sendSecurityMode;  uint8_t receiveSecurityMode;} TOS_Msg;typedef struct TOS_Msg_TinySecCompat {  uint16_t addr;  uint8_t type;  uint8_t length;  uint8_t group;  int8_t data[29];  uint16_t crc;  uint16_t strength;  uint8_t ack;  uint16_t time;  uint8_t sendSecurityMode;  uint8_t receiveSecurityMode;} TOS_Msg_TinySecCompat;typedef struct TinySec_Msg {  uint16_t addr;  uint8_t type;  uint8_t length;  uint8_t iv[4];  uint8_t enc[29];  uint8_t mac[4];  uint8_t calc_mac[4];  uint8_t ack_byte;  bool cryptoDone;  bool receiveDone;  bool MACcomputed;} __attribute((packed))  TinySec_Msg;enum __nesc_unnamed4262 {  MSG_DATA_SIZE = (size_t )& ((struct TOS_Msg *)0)->crc + sizeof(uint16_t ),   TINYSEC_MSG_DATA_SIZE = (size_t )& ((struct TinySec_Msg *)0)->mac + 4,   DATA_LENGTH = 29,   LENGTH_BYTE_NUMBER = (size_t )& ((struct TOS_Msg *)0)->length + 1,   TINYSEC_NODE_ID_SIZE = sizeof(uint16_t )};enum __nesc_unnamed4263 {  TINYSEC_AUTH_ONLY = 1,   TINYSEC_ENCRYPT_AND_AUTH = 2,   TINYSEC_DISABLED = 3,   TINYSEC_RECEIVE_AUTHENTICATED = 4,   TINYSEC_RECEIVE_CRC = 5,   TINYSEC_RECEIVE_ANY = 6,   TINYSEC_ENABLED_BIT = 128,   TINYSEC_ENCRYPT_ENABLED_BIT = 64} __attribute((packed)) ;typedef TOS_Msg *TOS_MsgPtr;# 39 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/interfaces/Timer.h"enum __nesc_unnamed4264 {  TIMER_REPEAT = 0,   TIMER_ONE_SHOT = 1,   NUM_TIMERS = 4};# 31 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/platform/avrmote/crc.h"uint16_t __attribute((__progmem__)) crcTable[256] = { 0x0000, 0x1021, 0x2042, 0x3063, 0x4084, 0x50a5, 0x60c6, 0x70e7, 0x8108, 0x9129, 0xa14a, 0xb16b, 0xc18c, 0xd1ad, 0xe1ce, 0xf1ef, 0x1231, 0x0210, 0x3273, 0x2252, 0x52b5, 0x4294, 0x72f7, 0x62d6, 0x9339, 0x8318, 0xb37b, 0xa35a, 0xd3bd, 0xc39c, 0xf3ff, 0xe3de, 0x2462, 0x3443, 0x0420, 0x1401, 0x64e6, 0x74c7, 0x44a4, 0x5485, 0xa56a, 0xb54b, 0x8528, 0x9509, 0xe5ee, 0xf5cf, 0xc5ac, 0xd58d, 0x3653, 0x2672, 0x1611, 0x0630, 0x76d7, 0x66f6, 0x5695, 0x46b4, 0xb75b, 0xa77a, 0x9719, 0x8738, 0xf7df, 0xe7fe, 0xd79d, 0xc7bc, 0x48c4, 0x58e5, 0x6886, 0x78a7, 0x0840, 0x1861, 0x2802, 0x3823, 0xc9cc, 0xd9ed, 0xe98e, 0xf9af, 0x8948, 0x9969, 0xa90a, 0xb92b, 0x5af5, 0x4ad4, 0x7ab7, 0x6a96, 0x1a71, 0x0a50, 0x3a33, 0x2a12, 0xdbfd, 0xcbdc, 0xfbbf, 0xeb9e, 0x9b79, 0x8b58, 0xbb3b, 0xab1a, 0x6ca6, 0x7c87, 0x4ce4, 0x5cc5, 0x2c22, 0x3c03, 0x0c60, 0x1c41, 0xedae, 0xfd8f, 0xcdec, 0xddcd, 0xad2a, 0xbd0b, 0x8d68, 0x9d49, 0x7e97, 0x6eb6, 0x5ed5, 0x4ef4, 0x3e13, 0x2e32, 0x1e51, 0x0e70, 0xff9f, 0xefbe, 0xdfdd, 0xcffc, 0xbf1b, 0xaf3a, 0x9f59, 0x8f78, 0x9188, 0x81a9, 0xb1ca, 0xa1eb, 0xd10c, 0xc12d, 0xf14e, 0xe16f, 0x1080, 0x00a1, 0x30c2, 0x20e3, 0x5004, 0x4025, 0x7046, 0x6067, 0x83b9, 0x9398, 0xa3fb, 0xb3da, 0xc33d, 0xd31c, 0xe37f, 0xf35e, 0x02b1, 0x1290, 0x22f3, 0x32d2, 0x4235, 0x5214, 0x6277, 0x7256, 0xb5ea, 0xa5cb, 0x95a8, 0x8589, 0xf56e, 0xe54f, 0xd52c, 0xc50d, 0x34e2, 0x24c3, 0x14a0, 0x0481, 0x7466, 0x6447, 0x5424, 0x4405, 0xa7db, 0xb7fa, 0x8799, 0x97b8, 0xe75f, 0xf77e, 0xc71d, 0xd73c, 0x26d3, 0x36f2, 0x0691, 0x16b0, 0x6657, 0x7676, 0x4615, 0x5634, 0xd94c, 0xc96d, 0xf90e, 0xe92f, 0x99c8, 0x89e9, 0xb98a, 0xa9ab, 0x5844, 0x4865, 0x7806, 0x6827, 0x18c0, 0x08e1, 0x3882, 0x28a3, 0xcb7d, 0xdb5c, 0xeb3f, 0xfb1e, 0x8bf9, 0x9bd8, 0xabbb, 0xbb9a, 0x4a75, 0x5a54, 0x6a37, 0x7a16, 0x0af1, 0x1ad0, 0x2ab3, 0x3a92, 0xfd2e, 0xed0f, 0xdd6c, 0xcd4d, 0xbdaa, 0xad8b, 0x9de8, 0x8dc9, 0x7c26, 0x6c07, 0x5c64, 0x4c45, 0x3ca2, 0x2c83, 0x1ce0, 0x0cc1, 0xef1f, 0xff3e, 0xcf5d, 0xdf7c, 0xaf9b, 0xbfba, 0x8fd9, 0x9ff8, 0x6e17, 0x7e36, 0x4e55, 0x5e74, 0x2e93, 0x3eb2, 0x0ed1, 0x1ef0 };static inline uint16_t crcByte(uint16_t oldCrc, uint8_t byte);# 35 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/interfaces/ADC.h"enum __nesc_unnamed4265 {  TOS_ADCSample3750ns = 0,   TOS_ADCSample7500ns = 1,   TOS_ADCSample15us = 2,   TOS_ADCSample30us = 3,   TOS_ADCSample60us = 4,   TOS_ADCSample120us = 5,   TOS_ADCSample240us = 6,   TOS_ADCSample480us = 7};# 33 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/platform/mica128/Clock.h"enum __nesc_unnamed4266 {  TOS_I1000PS = 32, TOS_S1000PS = 1,   TOS_I100PS = 40, TOS_S100PS = 2,   TOS_I10PS = 101, TOS_S10PS = 3,   TOS_I1024PS = 0, TOS_S1024PS = 3,   TOS_I512PS = 1, TOS_S512PS = 3,   TOS_I256PS = 3, TOS_S256PS = 3,   TOS_I128PS = 7, TOS_S128PS = 3,   TOS_I64PS = 15, TOS_S64PS = 3,   TOS_I32PS = 31, TOS_S32PS = 3,   TOS_I16PS = 63, TOS_S16PS = 3,   TOS_I8PS = 127, TOS_S8PS = 3,   TOS_I4PS = 255, TOS_S4PS = 3,   TOS_I2PS = 15, TOS_S2PS = 7,   TOS_I1PS = 31, TOS_S1PS = 7,   TOS_I0PS = 0, TOS_S0PS = 0};enum __nesc_unnamed4267 {  DEFAULT_SCALE = 3, DEFAULT_INTERVAL = 127};static  result_t PotM$Pot$init(uint8_t arg_0xa2e9b58);static  result_t HPLPotC$Pot$finalise(void);static  result_t HPLPotC$Pot$decrease(void);static  result_t HPLPotC$Pot$increase(void);static  result_t HPLInit$init(void);static  result_t ACBaseM$UARTSend$sendDone(TOS_MsgPtr arg_0xa33d250, result_t arg_0xa33d3a0);static  TOS_MsgPtr ACBaseM$UARTTokenReceive$receive(TOS_MsgPtr arg_0xa3420a0, uint8_t arg_0xa3421e8);static  TOS_MsgPtr ACBaseM$RadioReceive$receive(TOS_MsgPtr arg_0xa338968);static  result_t ACBaseM$JTimer$fired(void);static  result_t ACBaseM$RadioSend$sendDone(TOS_MsgPtr arg_0xa33d250, result_t arg_0xa33d3a0);static  result_t ACBaseM$StdControl$init(void);static  result_t ACBaseM$StdControl$start(void);static  TOS_MsgPtr ACBaseM$UARTReceive$receive(TOS_MsgPtr arg_0xa338968);static  result_t CC1000RadioIntM$SquelchTimer$fired(void);static  result_t CC1000RadioIntM$Send$send(TOS_MsgPtr arg_0xa33cd38);static   result_t CC1000RadioIntM$SpiByteFifo$dataReady(uint8_t arg_0xa3e39a0);static  result_t CC1000RadioIntM$WakeupTimer$fired(void);static   void CC1000RadioIntM$RadioReceiveCoordinator$default$byte(TOS_MsgPtr arg_0xa39c800, uint8_t arg_0xa39c950);static   void CC1000RadioIntM$RadioReceiveCoordinator$default$blockTimer(void);static   void CC1000RadioIntM$RadioReceiveCoordinator$default$startSymbol(uint8_t arg_0xa39c0f0, uint8_t arg_0xa39c238, TOS_MsgPtr arg_0xa39c388);static   void CC1000RadioIntM$RadioSendCoordinator$default$byte(TOS_MsgPtr arg_0xa39c800, uint8_t arg_0xa39c950);static   void CC1000RadioIntM$RadioSendCoordinator$default$blockTimer(void);static   void CC1000RadioIntM$RadioSendCoordinator$default$startSymbol(uint8_t arg_0xa39c0f0, uint8_t arg_0xa39c238, TOS_MsgPtr arg_0xa39c388);static  result_t CC1000RadioIntM$StdControl$init(void);static  result_t CC1000RadioIntM$StdControl$start(void);static   result_t CC1000RadioIntM$RSSIADC$dataReady(uint16_t arg_0xa3e0bc0);static   int16_t CC1000RadioIntM$MacBackoff$default$initialBackoff(TOS_MsgPtr arg_0xa3a3b60);static   int16_t CC1000RadioIntM$MacBackoff$default$congestionBackoff(TOS_MsgPtr arg_0xa3a8010);static  bool CC1000ControlM$CC1000Control$GetLOStatus(void);static   result_t CC1000ControlM$CC1000Control$RxMode(void);static  result_t CC1000ControlM$CC1000Control$BIASOn(void);static  uint32_t CC1000ControlM$CC1000Control$TuneManual(uint32_t arg_0xa398010);static   result_t CC1000ControlM$CC1000Control$TxMode(void);static  result_t CC1000ControlM$CC1000Control$SelectLock(uint8_t arg_0xa399d58);static  result_t CC1000ControlM$StdControl$init(void);static  result_t CC1000ControlM$StdControl$start(void);static  result_t CC1000ControlM$StdControl$stop(void);static  result_t HPLCC1000M$HPLCC1000$init(void);static   uint8_t HPLCC1000M$HPLCC1000$read(uint8_t arg_0xa4550b8);static   result_t HPLCC1000M$HPLCC1000$write(uint8_t arg_0xa454b00, uint8_t arg_0xa454c48);static   uint16_t RandomLFSR$Random$rand(void);static   result_t RandomLFSR$Random$init(void);static   result_t ADCREFM$HPLADC$dataReady(uint16_t arg_0xa4ab6a8);static   result_t ADCREFM$CalADC$default$dataReady(uint8_t arg_0xa498490, uint16_t arg_0xa3e0bc0);static  result_t ADCREFM$ADCControl$bindPort(uint8_t arg_0xa3d29a8, uint8_t arg_0xa3d2af0);static  result_t ADCREFM$ADCControl$init(void);static   result_t ADCREFM$ADCControl$manualCalibrate(void);static   result_t ADCREFM$ADC$getData(uint8_t arg_0xa49ddf0);static   result_t ADCREFM$ADC$default$dataReady(uint8_t arg_0xa49ddf0, uint16_t arg_0xa3e0bc0);static  result_t ADCREFM$Timer$fired(void);static   result_t HPLADCM$ADC$bindPort(uint8_t arg_0xa4aa550, uint8_t arg_0xa4aa698);static   result_t HPLADCM$ADC$init(void);static   result_t HPLADCM$ADC$samplePort(uint8_t arg_0xa4aab80);static   result_t TimerM$Clock$fire(void);static  result_t TimerM$StdControl$init(void);static  result_t TimerM$StdControl$start(void);static  result_t TimerM$Timer$default$fired(uint8_t arg_0xa4e8e70);static  result_t TimerM$Timer$start(uint8_t arg_0xa4e8e70, char arg_0xa357ad8, uint32_t arg_0xa357c30);static  result_t TimerM$Timer$stop(uint8_t arg_0xa4e8e70);static   void HPLClock$Clock$setInterval(uint8_t arg_0xa5054f8);static   uint8_t HPLClock$Clock$readCounter(void);static   result_t HPLClock$Clock$setRate(char arg_0xa5049f8, char arg_0xa504b38);static   uint8_t HPLClock$Clock$getInterval(void);static   uint8_t HPLPowerManagementM$PowerManagement$adjustPower(void);static   result_t HPLSpiM$SpiByteFifo$initSlave(void);static   result_t HPLSpiM$SpiByteFifo$disableIntr(void);static   result_t HPLSpiM$SpiByteFifo$writeByte(uint8_t arg_0xa3e21e8);static   result_t HPLSpiM$SpiByteFifo$enableIntr(void);static   result_t HPLSpiM$SpiByteFifo$txMode(void);static   result_t HPLSpiM$SpiByteFifo$rxMode(void);static   result_t LedsC$Leds$yellowOff(void);static   result_t LedsC$Leds$yellowOn(void);static   result_t LedsC$Leds$init(void);static   result_t LedsC$Leds$greenOff(void);static   result_t LedsC$Leds$redOff(void);static   result_t LedsC$Leds$greenToggle(void);static   result_t LedsC$Leds$yellowToggle(void);static   result_t LedsC$Leds$redToggle(void);static   result_t LedsC$Leds$redOn(void);static   result_t LedsC$Leds$greenOn(void);static   result_t FramerM$ByteComm$txDone(void);static   result_t FramerM$ByteComm$txByteReady(bool arg_0xa57dcc0);static   result_t FramerM$ByteComm$rxByteReady(uint8_t arg_0xa57d4f0, bool arg_0xa57d638, uint16_t arg_0xa57d790);static  result_t FramerM$BareSendMsg$send(TOS_MsgPtr arg_0xa33cd38);static  result_t FramerM$StdControl$init(void);static  result_t FramerM$StdControl$start(void);static  result_t FramerM$TokenReceiveMsg$ReflectToken(uint8_t arg_0xa342800);static   result_t UARTM$HPLUART$get(uint8_t arg_0xa5c4438);static   result_t UARTM$HPLUART$putDone(void);static   result_t UARTM$ByteComm$txByte(uint8_t arg_0xa57d060);static  result_t UARTM$Control$init(void);static  result_t UARTM$Control$start(void);static   result_t HPLUART0M$UART$init(void);static   result_t HPLUART0M$UART$put(uint8_t arg_0xa5adf00);static  # 47 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/system/RealMain.nc"result_t RealMain$hardwareInit(void);static  # 78 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/interfaces/Pot.nc"result_t RealMain$Pot$init(uint8_t arg_0xa2e9b58);static  # 63 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/interfaces/StdControl.nc"result_t RealMain$StdControl$init(void);static  result_t RealMain$StdControl$start(void);# 54 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/system/RealMain.nc"int   main(void);static  # 74 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/interfaces/HPLPot.nc"result_t PotM$HPLPot$finalise(void);static  #line 59result_t PotM$HPLPot$decrease(void);static  result_t PotM$HPLPot$increase(void);# 91 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/system/PotM.nc"uint8_t PotM$potSetting;static inline void PotM$setPot(uint8_t value);static inline  #line 106result_t PotM$Pot$init(uint8_t initialSetting);static inline  # 57 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/platform/mica2/HPLPotC.nc"result_t HPLPotC$Pot$decrease(void);static inline  result_t HPLPotC$Pot$increase(void);static inline  result_t HPLPotC$Pot$finalise(void);static inline  # 57 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/platform/avrmote/HPLInit.nc"result_t HPLInit$init(void);static  # 58 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/interfaces/BareSendMsg.nc"result_t ACBaseM$UARTSend$send(TOS_MsgPtr arg_0xa33cd38);static  # 63 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/interfaces/StdControl.nc"result_t ACBaseM$RadioControl$init(void);static  result_t ACBaseM$RadioControl$start(void);static  # 88 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/interfaces/TokenReceiveMsg.nc"result_t ACBaseM$UARTTokenReceive$ReflectToken(uint8_t arg_0xa342800);static  # 59 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/interfaces/Timer.nc"result_t ACBaseM$JTimer$start(char arg_0xa357ad8, uint32_t arg_0xa357c30);static  # 63 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/interfaces/StdControl.nc"result_t ACBaseM$UARTControl$init(void);static  result_t ACBaseM$UARTControl$start(void);static   # 56 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/interfaces/Leds.nc"result_t ACBaseM$Leds$init(void);static   #line 106result_t ACBaseM$Leds$greenToggle(void);static   #line 131result_t ACBaseM$Leds$yellowToggle(void);static   #line 81result_t ACBaseM$Leds$redToggle(void);static  # 58 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/interfaces/BareSendMsg.nc"result_t ACBaseM$RadioSend$send(TOS_MsgPtr arg_0xa33cd38);# 43 "ACBaseM.nc"enum ACBaseM$__nesc_unnamed4268 {  ACBaseM$UART_QUEUE_LEN = 12,   ACBaseM$RADIO_QUEUE_LEN = 12};TOS_Msg ACBaseM$uartQueueBufs[ACBaseM$UART_QUEUE_LEN];TOS_MsgPtr ACBaseM$uartQueue[ACBaseM$UART_QUEUE_LEN];uint8_t ACBaseM$uartIn;#line 50uint8_t ACBaseM$uartOut;bool ACBaseM$uartBusy;#line 51bool ACBaseM$uartFull;TOS_Msg ACBaseM$radioQueueBufs[ACBaseM$RADIO_QUEUE_LEN];TOS_MsgPtr ACBaseM$radioQueue[ACBaseM$RADIO_QUEUE_LEN];uint8_t ACBaseM$radioIn;#line 55uint8_t ACBaseM$radioOut;bool ACBaseM$radioBusy;#line 56bool ACBaseM$radioFull;uint8_t ACBaseM$sequences;static  void ACBaseM$UARTSendTask(void);static  void ACBaseM$RadioSendTask(void);static inline void ACBaseM$failBlink(void);static inline void ACBaseM$dropBlink(void);static inline  result_t ACBaseM$StdControl$init(void);static inline  #line 94result_t ACBaseM$StdControl$start(void);static inline  #line 113void ACBaseM$BroadcastJoin(void);static inline  #line 136TOS_MsgPtr ACBaseM$RadioReceive$receive(TOS_MsgPtr Msg);static  #line 183void ACBaseM$UARTSendTask(void);static inline  #line 209result_t ACBaseM$UARTSend$sendDone(TOS_MsgPtr msg, result_t success);static inline  #line 230TOS_MsgPtr ACBaseM$UARTReceive$receive(TOS_MsgPtr Msg);static inline  TOS_MsgPtr ACBaseM$UARTTokenReceive$receive(TOS_MsgPtr Msg, uint8_t Token);static  #line 266void ACBaseM$RadioSendTask(void);static inline  #line 291result_t ACBaseM$RadioSend$sendDone(TOS_MsgPtr msg, result_t success);static inline  #line 310result_t ACBaseM$JTimer$fired(void);static inline void ACBaseM$dropBlink(void);static inline void ACBaseM$failBlink(void);static  # 59 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/interfaces/Timer.nc"result_t CC1000RadioIntM$SquelchTimer$start(char arg_0xa357ad8, uint32_t arg_0xa357c30);static  result_t CC1000RadioIntM$SquelchTimer$stop(void);static   # 63 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/interfaces/Random.nc"uint16_t CC1000RadioIntM$Random$rand(void);static   #line 57result_t CC1000RadioIntM$Random$init(void);static  # 67 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/interfaces/BareSendMsg.nc"result_t CC1000RadioIntM$Send$sendDone(TOS_MsgPtr arg_0xa33d250, result_t arg_0xa33d3a0);static  # 116 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/platform/mica2/ADCControl.nc"result_t CC1000RadioIntM$ADCControl$bindPort(uint8_t arg_0xa3d29a8, uint8_t arg_0xa3d2af0);static  #line 77result_t CC1000RadioIntM$ADCControl$init(void);static  # 63 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/interfaces/StdControl.nc"result_t CC1000RadioIntM$TimerControl$init(void);static  result_t CC1000RadioIntM$TimerControl$start(void);static  #line 63result_t CC1000RadioIntM$CC1000StdControl$init(void);static  result_t CC1000RadioIntM$CC1000StdControl$start(void);static  result_t CC1000RadioIntM$CC1000StdControl$stop(void);static  # 75 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/interfaces/ReceiveMsg.nc"TOS_MsgPtr CC1000RadioIntM$Receive$receive(TOS_MsgPtr arg_0xa338968);static   # 38 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/platform/mica2/SpiByteFifo.nc"result_t CC1000RadioIntM$SpiByteFifo$initSlave(void);static   #line 37result_t CC1000RadioIntM$SpiByteFifo$disableIntr(void);static   #line 33result_t CC1000RadioIntM$SpiByteFifo$writeByte(uint8_t arg_0xa3e21e8);static   result_t CC1000RadioIntM$SpiByteFifo$enableIntr(void);static   result_t CC1000RadioIntM$SpiByteFifo$txMode(void);static   result_t CC1000RadioIntM$SpiByteFifo$rxMode(void);static  # 59 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/interfaces/Timer.nc"result_t CC1000RadioIntM$WakeupTimer$start(char arg_0xa357ad8, uint32_t arg_0xa357c30);static  result_t CC1000RadioIntM$WakeupTimer$stop(void);static   # 36 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/interfaces/RadioCoordinator.nc"void CC1000RadioIntM$RadioReceiveCoordinator$byte(TOS_MsgPtr arg_0xa39c800, uint8_t arg_0xa39c950);static   void CC1000RadioIntM$RadioReceiveCoordinator$blockTimer(void);static   #line 31void CC1000RadioIntM$RadioReceiveCoordinator$startSymbol(uint8_t arg_0xa39c0f0, uint8_t arg_0xa39c238, TOS_MsgPtr arg_0xa39c388);static   # 81 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/interfaces/Leds.nc"result_t CC1000RadioIntM$Leds$redToggle(void);static  # 190 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/platform/mica2/CC1000Control.nc"bool CC1000RadioIntM$CC1000Control$GetLOStatus(void);static   #line 116result_t CC1000RadioIntM$CC1000Control$RxMode(void);static  #line 137result_t CC1000RadioIntM$CC1000Control$BIASOn(void);static   #line 108result_t CC1000RadioIntM$CC1000Control$TxMode(void);static  #line 170result_t CC1000RadioIntM$CC1000Control$SelectLock(uint8_t arg_0xa399d58);static   # 36 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/interfaces/RadioCoordinator.nc"void CC1000RadioIntM$RadioSendCoordinator$byte(TOS_MsgPtr arg_0xa39c800, uint8_t arg_0xa39c950);static   void CC1000RadioIntM$RadioSendCoordinator$blockTimer(void);static   #line 31void CC1000RadioIntM$RadioSendCoordinator$startSymbol(uint8_t arg_0xa39c0f0, uint8_t arg_0xa39c238, TOS_MsgPtr arg_0xa39c388);static   # 52 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/interfaces/ADC.nc"result_t CC1000RadioIntM$RSSIADC$getData(void);static   # 74 "C:/PROGRA~1/UCB/cygwin/opt/tinyos-1.x/tos/platform/mica2/MacBackoff.nc"

⌨️ 快捷键说明

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