This commit adds the initial implementation of the console driver test. The purpose of this test is to verify the output functionality of the various types of console drivers (UART and semihost console types are supported for now). Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
14 lines
216 B
C
14 lines
216 B
C
/*
|
|
* Copyright (c) 2020 Stephanos Ioannidis <root@stephanos.io>
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <zephyr.h>
|
|
#include <sys/printk.h>
|
|
|
|
void main(void)
|
|
{
|
|
printk("Hello World from Console\n");
|
|
}
|