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:
6:a2737b51424c
Parent:
2:f6e49378dd8a
Child:
7:6cb27cce4c50
--- a/Filter.hpp	Tue Nov 28 09:59:04 2017 +0000
+++ b/Filter.hpp	Tue Nov 28 13:06:24 2017 +0000
@@ -53,18 +53,20 @@
 
 
 public:
-    FILTER(int Fs, int Fo, double Boost, int Q);  //Constuctor
-    ~FILTER(); //deConstuctor
+    FILTER(int Fs, int Fo, double Boost, int Q);    //Constuctor
+    ~FILTER();                                      //Destuctor
 
     //Constuct filter
     
-    void Define_Filter(); //Calculates the coefficeints of the filter
+    void Define_Filter();               //Calculates the coefficeints of the filter
+    
+    void Print_Filter();                //Print Filter Coefficients
     
     //Setters
-    void setvalue(float RAW_input);  //xn sample input
+    void setvalue(float RAW_input);     //xn sample input
 
     //Getters
-    float getvalue(void);          //returns yn
+    float getvalue(void);               //returns yn
 };