From 5d29fe79d30f430ae326d9dc57ccfaed6fe61328 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Tue, 8 Mar 2016 16:10:33 +0100 Subject: Another full update of current work --- tasks.h | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 tasks.h (limited to 'tasks.h') 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 -#include -#include -#include - -#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_ */ -- cgit v1.2.3