diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-02-02 10:23:59 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-02-02 10:23:59 +0000 |
commit | e3498cf0825e1ca9f5cbad0cee4cdb090964baf2 (patch) | |
tree | 3976b9d724e53f8281cbe2ce68180209ba883e5a /demos/various/RT-Posix-Simulator/readme.txt | |
parent | 69aa39ff927e44c72f7f4824ee47934660c5055c (diff) | |
download | ChibiOS-e3498cf0825e1ca9f5cbad0cee4cdb090964baf2.tar.gz ChibiOS-e3498cf0825e1ca9f5cbad0cee4cdb090964baf2.tar.bz2 ChibiOS-e3498cf0825e1ca9f5cbad0cee4cdb090964baf2.zip |
Posix simulator, still work in progress.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10077 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/various/RT-Posix-Simulator/readme.txt')
-rwxr-xr-x | demos/various/RT-Posix-Simulator/readme.txt | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/demos/various/RT-Posix-Simulator/readme.txt b/demos/various/RT-Posix-Simulator/readme.txt new file mode 100755 index 000000000..0b81e8414 --- /dev/null +++ b/demos/various/RT-Posix-Simulator/readme.txt @@ -0,0 +1,31 @@ +*****************************************************************************
+** ChibiOS/RT port for x86 into a Posix process **
+*****************************************************************************
+
+** TARGET **
+
+The demo runs under any Posix IA32 system as an application program. The serial
+I/O is simulated over TCP/IP sockets.
+
+** The Demo **
+
+The demo listens on the two serial ports, when a connection is detected a
+thread is started that serves a small command shell.
+The demo shows how to create/terminate threads at runtime, how to listen to
+events, how to work with serial ports, how to use the messages.
+You can develop your ChibiOS/RT application using this demo as a simulator
+then you can recompile it for a different architecture.
+See demo.c for details.
+
+** Build Procedure **
+
+The demo was built using GCC.
+
+** Connect to the demo **
+
+In order to connect to the demo a telnet client is required.
+
+Host Name: 127.0.0.1
+Port: 29001 and/or 29002
+Connection Type: Raw
+
|