summaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorVegard Storheil Eriksen <zyp@jvnv.net>2011-09-04 02:12:45 +0200
committerVegard Storheil Eriksen <zyp@jvnv.net>2011-09-04 02:12:45 +0200
commitbb2955ea4bb5c0f9431653351a47b373a2391389 (patch)
tree29e325c8ab76b089cbbd57505f7adc9b3117a440 /main.cpp
parente9f8369ce8b464f178c778ff8bcc3f54fe70b30c (diff)
Added systick based sleep().
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp
index ea6490d..040610c 100644
--- a/main.cpp
+++ b/main.cpp
@@ -1,6 +1,7 @@
#include "stm32.h"
#include "interrupt.h"
#include "thread.h"
+#include "time.h"
#include "ppmsum.h"
#include "i2c.h"
@@ -69,6 +70,9 @@ uint32_t thstack[1024];
Thread thread(thstack, sizeof(thstack), threadmain);
int main() {
+ // Initialize system timer.
+ Time::init();
+
RCC.enable(RCC.AFIO);
RCC.enable(RCC.IOPA);
RCC.enable(RCC.IOPB);