Merge pull request #54 from cmorty/contiki_mote_lqi_support
Add access to LQI and RSSI to Contiki motes
This commit is contained in:
commit
e7789f969f
@ -62,6 +62,7 @@ int simSignalStrength = -100;
|
||||
int simLastSignalStrength = -100;
|
||||
char simPower = 100;
|
||||
int simRadioChannel = 26;
|
||||
int simLQI = 105;
|
||||
|
||||
static const void *pending_data;
|
||||
|
||||
@ -93,6 +94,12 @@ radio_signal_strength_current(void)
|
||||
return simSignalStrength;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
int
|
||||
radio_LQI(void)
|
||||
{
|
||||
return simLQI;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static int
|
||||
radio_on(void)
|
||||
{
|
||||
@ -145,6 +152,9 @@ radio_read(void *buf, unsigned short bufsize)
|
||||
|
||||
memcpy(buf, simInDataBuffer, simInSize);
|
||||
simInSize = 0;
|
||||
packetbuf_set_attr(PACKETBUF_ATTR_RSSI, simSignalStrength);
|
||||
packetbuf_set_attr(PACKETBUF_ATTR_LINK_QUALITY, simLQI);
|
||||
|
||||
return tmp;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
|
@ -64,4 +64,11 @@ radio_signal_strength_last(void);
|
||||
int
|
||||
radio_signal_strength_current(void);
|
||||
|
||||
/**
|
||||
* Link quality indicator of last received packet.
|
||||
*/
|
||||
int
|
||||
radio_LQI(void);
|
||||
|
||||
|
||||
#endif /* __COOJA_RADIO_H__ */
|
||||
|
@ -250,6 +250,24 @@ public class ContikiRadio extends Radio implements ContikiMoteInterface, PolledA
|
||||
myMoteMemory.setIntValueOf("simSignalStrength", (int) signalStrength);
|
||||
}
|
||||
|
||||
/** Set LQI to a value between 0 and 255.
|
||||
*
|
||||
* @see se.sics.cooja.interfaces.Radio#setLQI(int)
|
||||
*/
|
||||
public void setLQI(int lqi){
|
||||
if(lqi<0) {
|
||||
lqi=0;
|
||||
}
|
||||
else if(lqi>0xff) {
|
||||
lqi=0xff;
|
||||
}
|
||||
myMoteMemory.setIntValueOf("simLQI", lqi);
|
||||
}
|
||||
|
||||
public int getLQI(){
|
||||
return myMoteMemory.getIntValueOf("simLQI");
|
||||
}
|
||||
|
||||
public Position getPosition() {
|
||||
return mote.getInterfaces().getPosition();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user