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.
Revision 2:4e7d58236762, committed 2014-09-18
- Comitter:
- macht
- Date:
- Thu Sep 18 13:07:09 2014 +0000
- Parent:
- 1:2d33daf35ed1
- Commit message:
- add API documentation
Changed in this revision
| DigitalFilter.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/DigitalFilter.h Wed Sep 10 05:05:17 2014 +0000
+++ b/DigitalFilter.h Thu Sep 18 13:07:09 2014 +0000
@@ -4,7 +4,9 @@
#include "math.h"
#include<vector>
-//enumrator to choose filter type
+/**enumrator to choose filter type
+*
+*/
typedef enum FilterType{
LPF1,
LPF2,
@@ -14,7 +16,10 @@
NOTCH,
HILBERT,
}FilterType;
-
+
+ /**
+ * DigitalFilter class
+ */
class DigitalFilter
{
public: