Skip to content
Draft
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion boards/st/nucleo_g071rb/nucleo_g071rb_defconfig
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Enable MPU
CONFIG_ARM_MPU=y
CONFIG_ARM_MPU=n

# Serial Drivers
CONFIG_SERIAL=y
Expand Down
3 changes: 2 additions & 1 deletion samples/hello_world/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@

int main(void)
{
printf("Hello World! %s\n", CONFIG_BOARD_TARGET);
printf("Hello Worl board %s\n", CONFIG_BOARD_TARGET);
printf("Welcome to zephyr OS\n");

return 0;
}
Loading