8000 kernel: Optimize display format for auto init when debugging by unicornx · Pull Request #9705 · RT-Thread/rt-thread · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

kernel: Optimize display format for auto init when debugging #9705

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components.c
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ void rt_components_board_init(void)
const struct rt_init_desc *desc;
for (desc = &__rt_init_desc_rti_board_start; desc < &__rt_init_desc_rti_board_end; desc ++)
{
rt_kprintf("initialize %s", desc->fn_name);
rt_kprintf("initialize %s\n", desc->fn_name);
result = desc->fn();
rt_kprintf(":%d done\n", result);
}
Expand All @@ -116,7 +116,7 @@ void rt_components_init(void)
rt_kprintf("do components initialization.\n");
for (desc = &__rt_init_desc_rti_board_end; desc < &__rt_init_desc_rti_end; desc ++)
{
rt_kprintf("initialize %s", desc->fn_name);
rt_kprintf("initialize %s\n", desc->fn_name);
result = desc->fn();
rt_kprintf(":%d done\n", result);
}
Expand Down
Loading
0