V001. 2017_11_30 10:21 Working code from Tuesday's lab session.

Dependencies:   mbed-rtos mbed

Fork of 2017_11_28_ELEC347_Coursework by Chris Hills

DSP Coursework ELEC347 2017-2018 Group members: Matthew Thewsey, Thomas Morris, Samuel Waggett, Christopher Hills .

Revision:
7:6cb27cce4c50
Parent:
6:a2737b51424c
Child:
8:192b376a6da7
diff -r a2737b51424c -r 6cb27cce4c50 Filter.cpp
--- a/Filter.cpp	Tue Nov 28 13:06:24 2017 +0000
+++ b/Filter.cpp	Tue Nov 28 14:37:13 2017 +0000
@@ -93,4 +93,13 @@
     printf("Den 1 = %f\n\r", _a0);
     printf("Den 2 = %f\n\r", _a1);
     printf("Den 3 = %f\n\r", _a2);
-}
\ No newline at end of file
+}
+
+void FILTER::Update_Fo(int Fo_New){_Fo = Fo_New;}
+int FILTER::Get_Fo(){return _Fo;}
+
+void FILTER::Update_Q(int Q_New){_Q = Q_New;}
+int FILTER::Get_Q(){return _Q;}
+
+void FILTER::Update_Boost(double Boost_New){_Boost = Boost_New;}
+double FILTER::Get_Boost(){return _Boost;}
\ No newline at end of file