This commit is contained in:
Olaf Rempel 2008-02-04 19:00:32 +01:00
parent 26b594582f
commit 518820b1e1
2 changed files with 7 additions and 7 deletions

4
main.c
View File

@ -45,9 +45,9 @@ static uint32_t pitc_test(struct pitc_timer *timer)
printf("%ld channels: ", count); printf("%ld channels: ", count);
uint32_t j; uint32_t j;
for (j = 0; j < count; j++) for (j = 0; j < count; j++)
printf("%+4d ", rc.chan[j]); printf("%+5d ", rc.chan[j]);
printf("\n\r"); printf("\r");
return PITC_RESTART_TIMER; return PITC_RESTART_TIMER;
} }

View File

@ -19,7 +19,7 @@
#include <stdint.h> #include <stdint.h>
#include "AT91SAM7S256.h" #include "AT91SAM7S256.h"
#include "board.h" #include "board.h"
//#include "static_alloc.h" #include "static_alloc.h"
#define ALIGN(x) (((x) +3) & ~3) #define ALIGN(x) (((x) +3) & ~3)