mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 04:02:31 +00:00
With recent changes to open-amp we can now include and build it directly as a zephyr library rather than doing a recursive make. We remove ext/lib/ipc/open-amp.cmake as part of this change and introduce a Kconfig option for open-amp. Fixes: #7673 Signed-off-by: Kumar Gala <kumar.gala@linaro.org> |
||
---|---|---|
.. | ||
platform | ||
remote | ||
src | ||
CMakeLists.txt | ||
prj.conf | ||
README.rst | ||
sample.yaml |
.. _openAMP_sample: OpenAMP Sample Application ########################### Overview ******** This application demonstrates how to use OpenAMP with Zephyr. It is designed to demonstrate how to integrate OpenAMP with Zephyr both from a build perspective and code. Building the application ************************* .. zephyr-app-commands:: :zephyr-app: samples/subsys/ipc/openamp :board: lpcxpresso54114_m4 :goals: debug Open a serial terminal (minicom, putty, etc.) and connect the board with the following settings: - Speed: 115200 - Data: 8 bits - Parity: None - Stop bits: 1 Reset the board and the following message will appear on the corresponding serial port: .. code-block:: console ***** Booting Zephyr OS v1.11.0-1377-g580b9add47 ***** Starting application thread! OpenAMP demo started Primary core received a message: 1 Primary core received a message: 3 Primary core received a message: 5 ... Primary core received a message: 101 OpenAMP demo ended.