Nicolas Nackel / Mbed 2 deprecated PPP-Blinky

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
nixnax
Date:
Wed Nov 14 08:40:17 2018 +0000
Parent:
231:6bd4523833a2
Child:
233:1b590d78ec9c
Commit message:
Reduce rxbuflen to 500

Changed in this revision

PPP-Blinky/ppp-blinky.h Show annotated file Show diff for this revision Revisions of this file
--- a/PPP-Blinky/ppp-blinky.h	Wed Oct 24 01:17:22 2018 +0000
+++ b/PPP-Blinky/ppp-blinky.h	Wed Nov 14 08:40:17 2018 +0000
@@ -146,7 +146,7 @@
     int firstFrame; // cleared after first frame
     unsigned int sum; // a checksum used in headers
     struct {
-#define RXBUFLEN 1500
+#define RXBUFLEN 500
         // the serial port receive buffer and packet buffer, size is RXBUFLEN
         // TODO - not sure why this buffer has to be this big
         volatile char buf[RXBUFLEN+1];