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.
Diff: Echo.cpp
- Revision:
- 4:640d48e7b84a
- Parent:
- 1:18123753e1d0
- Child:
- 5:0af77f24af2a
diff -r b30a43b5ad15 -r 640d48e7b84a Echo.cpp
--- a/Echo.cpp Tue Jul 29 05:14:24 2014 +0000
+++ b/Echo.cpp Tue Jul 29 05:21:54 2014 +0000
@@ -21,8 +21,11 @@
{
float xn = adc_.Read(); // input
+//====================================================
+// Singal Processing. Change following statement(s).
float yn = xn; // input => output
// float yn = myReverb.Execute(xn); // Echo
+//====================================================
dac_.Write(yn); // output
}