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 3:1630409f9bd6, committed 2014-03-23
- Comitter:
- cbookman3
- Date:
- Sun Mar 23 20:45:58 2014 +0000
- Parent:
- 2:c90f916f0b08
- Commit message:
- forgot to remove lcd library (used in debugging)
Changed in this revision
| MicIO.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r c90f916f0b08 -r 1630409f9bd6 MicIO.cpp
--- a/MicIO.cpp Sun Mar 23 20:43:55 2014 +0000
+++ b/MicIO.cpp Sun Mar 23 20:45:58 2014 +0000
@@ -1,6 +1,4 @@
#include "MicIO.h"
-#include "TextLCD.h"
-TextLCD lcd(p24, p25, p26, p27, p28, p29);
MicIO::MicIO(PinName micOut, PinName clockIn) : _micOut(micOut), _clockIn(clockIn) {
clockPeriod = 0.25;
@@ -50,7 +48,6 @@
} else { //lower 4 bits
fourBits = lower4Bits(outputStr[current4BitIndex/2]);
}
- lcd.printf("%i",fourBits);
sinSeed = _getSinSeed(fourBits); //get new sinSeed
}
}