increased buffer size for maximum sized packets including preamble

This commit is contained in:
fros4943 2009-01-15 13:55:20 +00:00
parent 57584c7af6
commit f0111ac181
1 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: SkyByteRadio.java,v 1.5 2008/12/04 14:03:41 joxe Exp $
* $Id: SkyByteRadio.java,v 1.6 2009/01/15 13:55:20 fros4943 Exp $
*/
package se.sics.cooja.mspmote.interfaces;
@ -95,7 +95,7 @@ public class SkyByteRadio extends Radio implements CustomDataRadio {
cc2420.setRFListener(new RFListener() {
int len = 0;
int expLen = 0;
byte[] buffer = new byte[127 + 5];
byte[] buffer = new byte[127 + 15];
public void receivedByte(byte data) {
if (len == 0) {
lastEventTime = SkyByteRadio.this.mote.getSimulation().getSimulationTime();