aboutsummaryrefslogtreecommitdiff
path: root/tasks.h
diff options
context:
space:
mode:
Diffstat (limited to 'tasks.h')
-rw-r--r--tasks.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/tasks.h b/tasks.h
deleted file mode 100644
index 60653b3..0000000
--- a/tasks.h
+++ /dev/null
@@ -1,44 +0,0 @@
-#include <avr/io.h>
-#include <util/delay.h>
-#include <avr/interrupt.h>
-#include <stdint.h>
-
-#include "mcu/mcu_def.h"
-#include "timer.h"
-
-#ifndef _IOE_TASKS_H_
-#define _IOE_TASKS_H_
-#ifdef CONFIG_IOE_TASKS
-
-#ifndef CONFIG_IOE_TIMERS
-#error "To use tasks you must enable timers (CONFIG_IOE_TIMERS)."
-#endif
-
-struct Task {
-
-};
-
-void taskDelay(uint16_t us);
-void taskDelayMS(uint16_t ms);
-void taskDelayTill(int8_t *boolean);
-int8_t taskDelayTillT(int8_t *boolean, uin16_t us);
-void taskDelayTillF(int8_t (*fnc)(void));
-void taskDelayTillFT(int8_t (*fnc)(void), uint16_t us);
-
-struct Mutex {
-};
-void takeMutex(void);
-int8_t takeMutexT(uint16_t timeout);
-void giveMutex(void);
-
-struct Semaphore {
-};
-
-#else /* CONFIG_IOE_TASKS */
-
-#define taskDelay(US) _delay_us(US)
-#define taskDelayTill(BOOL) while(*BOOL == 0)
-int8_t taskDelayTillT(int8_t *condition, uint8_t timeout_10us);
-
-#endif /* CONFIG_IOE_TASKS */
-#endif /* _IOE_TASKS_H_ */