aboutsummaryrefslogtreecommitdiff
path: root/examples/test-systick.cpp
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@leaflabs.com>2011-04-01 03:15:27 -0400
committerMarti Bolivar <mbolivar@leaflabs.com>2011-04-05 14:13:35 -0400
commitf5b41b34579ccfa018cd3bc3375cc3d8225442f3 (patch)
treebae0ef2cdde2d6a3b3e542db60c036653c4dd1ed /examples/test-systick.cpp
parent6661d006e60dd8a1c19b5a0fdeb64b5383f948a1 (diff)
SysTick refactor.
For the changelog: * util.h is free of __read(), __write(), etc. macros. * systick_resume() was renamed systick_enable().
Diffstat (limited to 'examples/test-systick.cpp')
-rw-r--r--examples/test-systick.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/test-systick.cpp b/examples/test-systick.cpp
index c7b5529..bbf0adf 100644
--- a/examples/test-systick.cpp
+++ b/examples/test-systick.cpp
@@ -30,7 +30,7 @@ void loop() {
SerialUSB.println("Disabling SysTick");
} else {
SerialUSB.println("Re-enabling SysTick");
- systick_resume();
+ systick_enable();
}
disable = !disable;
}