X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/fnordlicht-mini/blobdiff_plain/24562c8a748c379de491019607921e5959459464..745723e4d1fee18fc31d79172fe8357a75628eea:/firmware/fnordlicht-controller/timer.h?ds=sidebyside diff --git a/firmware/fnordlicht-controller/timer.h b/firmware/fnordlicht-controller/timer.h deleted file mode 100644 index 4bd8d43..0000000 --- a/firmware/fnordlicht-controller/timer.h +++ /dev/null @@ -1,42 +0,0 @@ -/* - * unzap firmware - * - * (c) by Alexander Neumann - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 as - * published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - * - * For more information on the GPL, please go to: - * http://www.gnu.org/copyleft/gpl.html - */ - -/* small timer library, uses timer2 */ - -#ifndef __TIMER_H -#define __TIMER_H - -#include -#include - -/* structures */ -typedef struct { - uint8_t current; - uint8_t timeout; -} timer_t; - -/* functions */ -void timer_init(void); -void timer_set(timer_t *t, uint8_t timeout); -bool timer_expired(timer_t *t); - -#endif