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 1:f2f253bec95e, committed 2018-12-11
- Comitter:
- jeffyromney
- Date:
- Tue Dec 11 17:00:28 2018 +0000
- Parent:
- 0:3c704483eb79
- Commit message:
- Made 16 bit
Changed in this revision
| fifo.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/fifo.h Wed May 21 18:30:45 2014 +0000
+++ b/fifo.h Tue Dec 11 17:00:28 2018 +0000
@@ -3,8 +3,8 @@
#include "LPC17xx.h"
-#define FIFO_SIZE 256
-#define FIFO_TYPE uint8_t
+#define FIFO_SIZE 16
+#define FIFO_TYPE uint16_t
class fifo
{