1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

increase inter-timer delay

This commit is contained in:
Ludwig Ortmann 2014-01-22 21:32:09 +01:00
parent de3f8a1ae5
commit 9d55fde052

View File

@ -17,7 +17,7 @@ int main(void)
puts("Initializing hwtimer [OK].");
#define BASE_DELAY (1000UL * 1000UL)
#define DELTA_DELAY (100UL * 1000UL)
#define DELTA_DELAY (1000UL * 1000UL)
#define MSGLEN 12 // == strlen("callback %2i")
char msg[MSGLEN * ARCH_MAXTIMERS]; // == [callback 1\0callback 2\0...]
unsigned long delay = BASE_DELAY + ((ARCH_MAXTIMERS-1) * DELTA_DELAY);