You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ad...@apache.org on 2017/02/08 15:53:36 UTC

incubator-mynewt-site git commit: modifies sys initilization details in shell and console. This closes #150.

Repository: incubator-mynewt-site
Updated Branches:
  refs/heads/master 650d5077f -> b568e4660


modifies sys initilization details in shell and console. This closes #150.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/commit/b568e466
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/tree/b568e466
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/diff/b568e466

Branch: refs/heads/master
Commit: b568e4660648d90c3b2003c8a271095ec6603f83
Parents: 650d507
Author: aditihilbert <ad...@runtime.io>
Authored: Wed Feb 8 07:39:39 2017 -0800
Committer: aditihilbert <ad...@runtime.io>
Committed: Wed Feb 8 07:39:39 2017 -0800

----------------------------------------------------------------------
 docs/os/modules/shell/shell_evq_set.md | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b568e466/docs/os/modules/shell/shell_evq_set.md
----------------------------------------------------------------------
diff --git a/docs/os/modules/shell/shell_evq_set.md b/docs/os/modules/shell/shell_evq_set.md
new file mode 100644
index 0000000..b0d9097
--- /dev/null
+++ b/docs/os/modules/shell/shell_evq_set.md
@@ -0,0 +1,23 @@
+## <font color="F2853F" style="font-size:24pt"> shell_evq_set</font>
+
+```c
+void shell_evq_set(struct os_eventq *evq)
+```
+
+Specifies an event queue to use for shell events.   You must create the event queue 
+and the task to process events from the queue before calling this function. 
+
+By default, shell uses the OS default event queue and executes in the context
+of the main task that Mynewt creates.
+
+#### Arguments
+
+| Arguments | Description |
+|-----------|-------------|
+| `evq` | Pointer to the event queue to use for shell events.|
+
+#### Returned values
+None
+
+#### Notes
+