Converted u8_t to uint8_t and u16_t to uint16_t in the examples directory.

This commit is contained in:
Nicholas J Humfrey 2012-02-20 19:20:03 +00:00 committed by Mariano Alvira
parent efab964451
commit a561d20828
17 changed files with 66 additions and 66 deletions

View file

@ -19,7 +19,7 @@ PROCESS_THREAD(clock_test_process, ev, data)
static struct etimer et;
static clock_time_t count, start_count, end_count, diff;
static unsigned long sec;
static u8_t i;
static uint8_t i;
PROCESS_BEGIN();
@ -56,7 +56,7 @@ PROCESS_THREAD(clock_test_process, ev, data)
etimer_reset(&et);
sec = clock_seconds();
printf("%u seconds\n", (u16_t) sec);
printf("%u seconds\n", (uint16_t) sec);
leds_toggle(LEDS_GREEN);
i++;