optimize size, and make debug and ftl stuff optional

This commit is contained in:
David Voswinkel
2009-08-01 16:59:31 +02:00
parent c5e72c48eb
commit 1539ff6111
12 changed files with 1729 additions and 1639 deletions

View File

@@ -78,9 +78,9 @@ void timer_start( void )
}
double timer_stop(void)
uint16_t timer_stop_int(void)
{
double t = ((double)(DEBOUNCE - prescaler) / DEBOUNCE ) + second;
uint16_t t = ((DEBOUNCE - prescaler) / DEBOUNCE ) + second;
return t;
}