Remote control code for https://developer.mbed.org/users/ivo_david_michelle/code/QuadTrio/

Dependencies:   Analog_Joystick Sender mbed

Fork of ESE350-Whack-a-Mole by Eric Berdinis

Revision:
5:3ad830e95ffd
Parent:
1:698e4ce30e14
diff -r 2e975d78222c -r 3ad830e95ffd MRF24J40/MRF24J40.cpp
--- a/MRF24J40/MRF24J40.cpp	Thu Mar 03 22:21:59 2016 +0000
+++ b/MRF24J40/MRF24J40.cpp	Mon Mar 28 23:18:26 2016 +0000
@@ -168,12 +168,10 @@
 uint8_t MRF24J40::Receive_RSSI(uint8_t *data, uint8_t *rssi, uint8_t maxLength)
 {
   uint8_t i, length;
-  uint8_t lqi;
   
   if(ReadShort(ISRSTS)& 0x08)
   {
     length = ReadLong(0x300);
-    lqi = ReadLong(0x301 + length);
     *rssi = ReadLong(0x302 + length);
     for(i=0; i<length; i++)
       if(i<maxLength)