Recording WAV files

Dependencies:   mbed SDFileSystem

Revision:
4:fc36c8ec2966
Child:
7:4467fbfa888b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/check_revision.cpp	Sat Aug 17 03:28:33 2019 +0000
@@ -0,0 +1,20 @@
+/*
+ * Check Mbed revision
+ *
+ * Copyright (c) 2019 Kenji Arai / JH1PJL
+ *  http://www.page.sannet.ne.jp/kenjia/index.html
+ *  https://os.mbed.com/users/kenjiArai/
+ *      Created:    July      17th, 2019
+ *      Revised:    August    17th, 2019
+ */
+
+#include "mbed.h"
+
+//    RUN ONLY ON mbed 2.0.165
+#if (MBED_MAJOR_VERSION == 2) &&\
+    (MBED_MINOR_VERSION == 0) &&\
+    (MBED_PATCH_VERSION == 165)
+#else
+    //#warning "Please use mbed 2.0.165"
+    #error "Please use mbed 2.0.165"
+#endif
\ No newline at end of file