From 47ce60ccdce7686d5d6de592e2c77b96ffb06d9e Mon Sep 17 00:00:00 2001 From: Hauke Petersen Date: Wed, 14 May 2014 15:40:52 +0200 Subject: [PATCH] examples: IPC ping-pong README adjustments --- examples/ipc_pingpong/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/ipc_pingpong/README.md b/examples/ipc_pingpong/README.md index 15ef4d42b2..e4ebe11a87 100644 --- a/examples/ipc_pingpong/README.md +++ b/examples/ipc_pingpong/README.md @@ -4,9 +4,10 @@ IPC Pingpong! This example is to illustrate the usage of RIOTs IPC messaging system. The application starts a second thread (in addition to the main thread) and sends messages between -these two threads. The main thread call `thread_send_receive()` in an endless loop. The second +these two threads. The main thread calls `thread_send_receive()` in an endless loop. The second thread receives the message, prints `2nd: got msg from x` to stdout and sends a reply message with -an incrementing number back to the main thread. +an incrementing number back to the main thread. The main thread then prints the number it received +from the 2nd thread. The correct output should look like this: ```