From f6f60dc2c839b2604ed84b3262fbe36e60d715bd Mon Sep 17 00:00:00 2001 From: Flavio Santes Date: Fri, 25 Nov 2016 10:19:01 -0600 Subject: [PATCH] tests/drivers: Update pinmux application This commit updates the pinmux test case application to match with the hello_world sample app. Change-Id: I86f459062527b7e2831bd7a3dfaf6bf8b28ef132 Signed-off-by: Flavio Santes --- tests/drivers/pinmux/README.txt | 2 +- tests/drivers/pinmux/src/main.c | 11 +---------- 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/tests/drivers/pinmux/README.txt b/tests/drivers/pinmux/README.txt index 69a90114e02..ad00aecc30c 100644 --- a/tests/drivers/pinmux/README.txt +++ b/tests/drivers/pinmux/README.txt @@ -1,3 +1,3 @@ This is simply to build pinmux drivers to catch build breakage. -The source code comes from samples/hello_world/nanokernel. +The source code comes from samples/hello_world. diff --git a/tests/drivers/pinmux/src/main.c b/tests/drivers/pinmux/src/main.c index c2f787ee6a1..b7e013e7ada 100644 --- a/tests/drivers/pinmux/src/main.c +++ b/tests/drivers/pinmux/src/main.c @@ -17,16 +17,7 @@ #include #include - -/* - * @file - * @brief Hello World demo - * Nanokernel version of hello world demo - */ - - void main(void) { - printk("Hello World!\n"); + printk("Hello World! %s\n", CONFIG_ARCH); } -