X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=examples%2Fdevelgps%2Fcfg%2Fcfg_timer.h;fp=examples%2Fdevelgps%2Fcfg%2Fcfg_timer.h;h=1cff78b89426a8b68c68f2b03495498f788502d7;hb=ab03b5b37726fb8b39a6f6c915f8668bddd779ee;hp=0000000000000000000000000000000000000000;hpb=ec4804af8993aaf53193c71abdf890f7283fe5fb;p=bertos.git diff --git a/examples/develgps/cfg/cfg_timer.h b/examples/develgps/cfg/cfg_timer.h new file mode 100644 index 00000000..1cff78b8 --- /dev/null +++ b/examples/develgps/cfg/cfg_timer.h @@ -0,0 +1,68 @@ +/** + * \file + * + * + * \brief Configuration file for timer module. + * + * \version $Id$ + * + * \author Daniele Basile + */ + +#ifndef CFG_TIMER_H +#define CFG_TIMER_H + +/** + * Hardware timer selection for drv/timer.c. + * $WIZ$ type = "enum" + * $WIZ$ value_list = "timer_select" + */ +#define CONFIG_TIMER TIMER_DEFAULT + +/** + * Debug timer interrupt using a strobe pin. + * $WIZ$ type = "boolean" + */ +#define CONFIG_TIMER_STROBE 0 + +/** + * Enable asynchronous timers. + * $WIZ$ type = "boolean" + */ +#define CONFIG_TIMER_EVENTS 1 + +/** + * Support hi-res timer_usleep(). + * $WIZ$ type = "boolean" + */ +#define CONFIG_TIMER_UDELAY 1 + +#endif /* CFG_TIMER_H */