zephyr/samples/cpp/hello_world
Lucas Tamborrino c6f84d0ba2 boards: espressif: esp32c6: Add LP Core board support
Add ULP Coprocessor board support for C6.
This requires a change in the board qualifier depending on the build
target.
Update esp32c6 overlay and configuration files to the proper name.

Signed-off-by: Lucas Tamborrino <lucas.tamborrino@espressif.com>
2025-03-21 17:05:20 +01:00
..
src
CMakeLists.txt
prj.conf
README.rst
sample.yaml boards: espressif: esp32c6: Add LP Core board support 2025-03-21 17:05:20 +01:00

.. zephyr:code-sample:: hello_cpp_world
   :name: Hello C++ world

   Print "Hello World" to the console in C++.

Overview
********

A simple :ref:`C++ <language_cpp>` sample that can be used with many supported board and prints
"Hello, C++ world!" to the console.

Building and Running
********************

This configuration can be built and executed on QEMU as follows:

.. zephyr-app-commands::
   :zephyr-app: samples/cpp/hello_world
   :host-os: unix
   :board: qemu_riscv32
   :goals: run
   :compact:

To build for another board, change "qemu_riscv32" above to that board's name.

Sample Output
=============

.. code-block:: console

    Hello C++, world! qemu_riscv32

Exit QEMU by pressing :kbd:`CTRL+C`