From: arighi Date: Wed, 12 May 2010 16:26:43 +0000 (+0000) Subject: stm32p103: change debug message in example application. X-Git-Tag: 2.5.0~246 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=d8a17dd99eec9aecaa60fb8beaa073fc185d8b98;hp=0590b1385728a6dfc5b2a85287edfe8051ccdc22;p=bertos.git stm32p103: change debug message in example application. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3671 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/examples/stm32p103/main.c b/examples/stm32p103/main.c index 4ca8ea3c..de49bbb5 100644 --- a/examples/stm32p103/main.c +++ b/examples/stm32p103/main.c @@ -65,7 +65,7 @@ int main(void) for (i = 0; ; i = !i) { stm32_gpioPinWrite((struct stm32_gpio *)GPIOC_BASE, LED_PIN, i); - kputs("hello world\n"); + kputs("BeRTOS up & running!\n"); timer_delay(500); } }