summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaulo Borges <paulo.borges@openbossa.org>2013-11-29 16:15:42 -0300
committerPaulo Borges <paulo.borges@openbossa.org>2013-12-22 22:43:06 -0300
commitfba0798cfacd603bc0c7506f4f5e8ab399115d6a (patch)
tree939544c2e66a7b066c4149c4be2b8dd44a20c0bc
parent8cc6c10222b25b70caafc518829ef92e215d3467 (diff)
timer: Add timer API
-rw-r--r--stack/timer.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/stack/timer.h b/stack/timer.h
new file mode 100644
index 0000000..8f8aafd
--- /dev/null
+++ b/stack/timer.h
@@ -0,0 +1,34 @@
+/**
+ * The MIT License (MIT)
+ *
+ * Copyright (c) 2013 Paulo B. de Oliveira Filho <pauloborgesfilho@gmail.com>
+ * Copyright (c) 2013 Claudio Takahasi <claudio.takahasi@gmail.com>
+ * Copyright (c) 2013 João Paulo Rechi Vita <jprvita@gmail.com>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#define TIMER_SINGLESHOT 0
+#define TIMER_REPEATED 1
+
+typedef void (*timer_cb) (void *user_data);
+
+int16_t timer_init(void);
+int16_t timer_start(uint8_t type, uint32_t ms, timer_cb cb, void *user_data);
+int16_t timer_stop(int16_t id);