X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=boards%2Farduino-mega%2Ftemplates%2Farduino-mega_kernel%2Fcfg%2Fcfg_timer.h;fp=boards%2Farduino-mega%2Ftemplates%2Farduino-mega_kernel%2Fcfg%2Fcfg_timer.h;h=1cff78b89426a8b68c68f2b03495498f788502d7;hb=916115afea98a1f0b520ee72be7892261a24e9ff;hp=0000000000000000000000000000000000000000;hpb=e7d41c27f27e04808b1856e563ee852af1e5b856;p=bertos.git diff --git a/boards/arduino-mega/templates/arduino-mega_kernel/cfg/cfg_timer.h b/boards/arduino-mega/templates/arduino-mega_kernel/cfg/cfg_timer.h new file mode 100644 index 00000000..1cff78b8 --- /dev/null +++ b/boards/arduino-mega/templates/arduino-mega_kernel/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 */