Serial Communication/ Analog Read/ FFT compute / LCD Text / Write on SD Card / read and write RTC application. K64F app developed for Electrical Engineering undergraduate final project at Ulbra university.

Dependencies:   SDFileSystem TextLCD mbed

Serial, LCD 20x4, RTC, SD-Card, ADC features application. Included 5-key keyboard using AN0 channel, RTC update via serial, compute FFT and storage in SD-Card.

Revision:
2:03e1399ed9eb
Parent:
1:f070e455cea0
Child:
3:ec85930e953c
--- a/main.cpp	Fri Dec 19 12:34:56 2014 +0000
+++ b/main.cpp	Thu Oct 29 06:33:32 2015 +0000
@@ -1,6 +1,6 @@
 //--------------------------------------------------------------
 // Demo program of FftReal class
-// Copyright (c) 2014 MIKAMI, Naoki,  2014/12/19
+// Copyright (c) 2015 MIKAMI, Naoki,  2015/10/29
 //--------------------------------------------------------------
 
 #include "dftComplex.hpp"
@@ -12,7 +12,8 @@
 
 int main()
 {
-    const int N = 256;//16;       // number of date for FFT
+//    const int N = 16;       // number of date for FFT
+    const int N = 256;       // number of date for FFT
 
     float x1[N], x2[N];
     Complex y1[N], y2[N/2+1];