blob: 3f500b3e56b7b96805c2093bf4c1e216cec0dc6a [file] [log] [blame]
/*
* Copyright (c) 2019 LuoZhongYao
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/kernel.h>
#include <zephyr/device.h>
#include <zephyr/init.h>
#include <zephyr/arch/common/semihost.h>
#include <zephyr/sys/libc-hooks.h>
int arch_printk_char_out(int _c)
{
semihost_poll_out((char)_c);
return 0;
}
static int semihost_console_init(void)
{
/*
* The printk output callback is arch_printk_char_out by default and
* is installed at link time. That makes printk() usable very early.
*
* We still need to install the stdout callback manually at run time.
*/
__stdout_hook_install(arch_printk_char_out);
return 0;
}
SYS_INIT(semihost_console_init, PRE_KERNEL_1, CONFIG_CONSOLE_INIT_PRIORITY);