Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Revision 232:db31d91f71d2, committed 2018-11-14
- 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];