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.
Dependents: unzen_sample_nucleo_f746 skeleton_unzen_nucleo_f746 ifmag_noise_canceller synthesizer_f746
Revision 8:1fa224c83cfa, committed 2017-02-18
- Comitter:
- shorie
- Date:
- Sat Feb 18 01:05:19 2017 +0000
- Parent:
- 7:621c15c3be14
- Commit message:
- Fixed mistake of visibility in the limitterlinatan.h
Changed in this revision
| limitterlinatan.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/limitterlinatan.h Sat Feb 11 07:00:56 2017 +0000
+++ b/limitterlinatan.h Sat Feb 18 01:05:19 2017 +0000
@@ -10,7 +10,7 @@
*/
class LimitterLinAtan : public AbstractFilter
{
- private:
+ public:
LimitterLinAtan( uint32_t blockSize ): AbstractFilter(blockSize ){};
virtual void run( float32_t *pSrc, float32_t *pDst);
};