From c5193c485c57f2c059436c8356ad622a739286ac Mon Sep 17 00:00:00 2001 From: eggman Date: Sat, 25 Jun 2016 10:08:23 +0900 Subject: [PATCH] fix hello world --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 2efd8ea..85c0baa 100644 --- a/src/main.c +++ b/src/main.c @@ -5,7 +5,7 @@ int main(void) int i=0; while (1) { - DiagPrintf("Hello World : %d %d\r\n", i++); + DiagPrintf("Hello World : %d\r\n", i++); HalDelayUs(1000000); } }