mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-31 16:35:31 +00:00
This commit fixes the coding style of the function declarations and aligning the open and close brackets and change the style of parameter's documentation. Signed-off-by: Yonattan Louise <yonattan.a.louise.mendoza@intel.com> Change-Id: I648d36eb29dafc7fcd87b8db01e682bea993e5d2 Signed-off-by: Anas Nashif <anas.nashif@intel.com> |
||
---|---|---|
.. | ||
src | ||
Makefile | ||
prj_arm.conf | ||
prj_x86.conf | ||
prj.vpf | ||
README.txt |
Title: Hello Description: A simple application that demonstates basic sanity of the VxMicro microkernel. Two tasks (A and B) take turns printing a greeting message to the console, and use sleep requests and semaphores to control the rate at which messages are generated. This demonstrates that microkernel scheduling, communication, and timing are operating correctly. -------------------------------------------------------------------------------- Building and Running Project: This microkernel project outputs to the console. It can be built and executed on QEMU as follows: make pristine make microkernel.qemu If executing on Simics, substitute 'simics' for 'qemu' in the command line. -------------------------------------------------------------------------------- Sample Output: taskA: Hello World! taskB: Hello World! taskA: Hello World! taskB: Hello World! taskA: Hello World! taskB: Hello World! taskA: Hello World! taskB: Hello World! taskA: Hello World! taskB: Hello World! <repeats endlessly>