32 lines
719 B
C
32 lines
719 B
C
/*
|
|
* 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);
|