diff options
author | Marti Bolivar <mbolivar@leaflabs.com> | 2011-08-30 15:43:29 -0400 |
---|---|---|
committer | Marti Bolivar <mbolivar@leaflabs.com> | 2011-08-30 15:43:29 -0400 |
commit | fec92f0daf605c9fce7bb0ab459585214011381b (patch) | |
tree | 92c07e654956c67a8583d3a4ac4e698a228a07cd /examples | |
parent | 2c28faa6245f78a53c2bf148dffb37ab873749b7 (diff) | |
download | librambutan-fec92f0daf605c9fce7bb0ab459585214011381b.tar.gz librambutan-fec92f0daf605c9fce7bb0ab459585214011381b.zip |
fsmc-stress-test.cpp: Eliminate unused variable.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/fsmc-stress-test.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/examples/fsmc-stress-test.cpp b/examples/fsmc-stress-test.cpp index ee40236..0cb9d30 100644 --- a/examples/fsmc-stress-test.cpp +++ b/examples/fsmc-stress-test.cpp @@ -103,14 +103,12 @@ bool stress_test(void); bool simple_roundtrip(void); void loop() { - uint32 count = 0; uint32 last; bool ok = true; bool (*test)(void) = stress_test; last = millis(); while (true) { - count++; bool result = test(); ok = ok && result; if (!ok) { |