-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use dynamic memory to support large internal buffers (#6)
* make dynamic memory default * renamed internal variables less cryptic
- Loading branch information
1 parent
7b6a6d0
commit bfbd4ff
Showing
6 changed files
with
162 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// | ||
// FILE: RunningMedian2.ino | ||
// AUTHOR: Rob Tillaart ( kudos to Sembazuru) | ||
// VERSION: 0.1.2 | ||
// PURPOSE: demo most functions | ||
// DATE: 2013-10-17 | ||
// URL: https://github.com/RobTillaart/RunningMedian | ||
// | ||
|
||
#include "RunningMedian.h" | ||
|
||
RunningMedian samples = RunningMedian(101); | ||
|
||
long count = 0; | ||
|
||
void setup() | ||
{ | ||
Serial.begin(115200); | ||
Serial.print(F("Running Median Version: ")); | ||
Serial.println(RUNNING_MEDIAN_VERSION); | ||
|
||
Serial.println(samples.getSize()); | ||
} | ||
|
||
void loop() | ||
{ | ||
} |
Oops, something went wrong.