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 <flavio.santes@intel.com>
This commit is contained in:
Flavio Santes 2016-11-25 10:19:01 -06:00 committed by Anas Nashif
commit f6f60dc2c8
2 changed files with 2 additions and 11 deletions

View file

@ -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.

View file

@ -17,16 +17,7 @@
#include <zephyr.h>
#include <misc/printk.h>
/*
* @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);
}