├── doc
├── .gitignore
├── doxygen
│ ├── img
│ │ ├── logo.png
│ │ ├── gen_flow.dia
│ │ └── stan_flow.dia
│ ├── footer.html
│ ├── dox
│ │ ├── user.dox
│ │ ├── base.dox
│ │ ├── node.dox
│ │ ├── conn.dox
│ │ ├── tcpros.dox
│ │ ├── threading.dox
│ │ ├── xmlrpc.dox
│ │ └── main.dox
│ └── header.html
└── Documentation.html
├── demos
├── benchmark-chibios+lwip
│ ├── .gitignore
│ ├── project.mk
│ ├── .settings
│ │ └── language.settings.xml
│ ├── misc
│ │ ├── urosgen.cfg
│ │ ├── benchmark (OpenOCD, Run only).launch
│ │ └── benchmark (OpenOCD, Flash and Run).launch
│ ├── .project
│ ├── src
│ │ ├── app.c
│ │ ├── board.c
│ │ └── main.c
│ ├── include
│ │ ├── urosHandlers.h
│ │ ├── app.h
│ │ └── urosMsgTypes.h
│ └── .cproject
├── turtlesim-chibios+lwip
│ ├── .gitignore
│ ├── project.mk
│ ├── misc
│ │ ├── urosgen.cfg
│ │ ├── R2P_GW (OpenOCD, Run only).launch
│ │ └── R2P_GW (OpenOCD, Flash and Run).launch
│ ├── .project
│ ├── include
│ │ ├── usbcfg.h
│ │ ├── logcfg.h
│ │ └── urosHandlers.h
│ ├── .settings
│ │ └── language.settings.xml
│ ├── src
│ │ └── board.c
│ └── .cproject
├── benchmark-linux
│ ├── .gitignore
│ ├── project.mk
│ ├── misc
│ │ ├── urosgen.cfg
│ │ ├── benchmark-posix [ops].launch
│ │ └── benchmark-posix [ps].launch
│ ├── .settings
│ │ └── language.settings.xml
│ ├── src
│ │ └── main.c
│ ├── include
│ │ ├── urosHandlers.h
│ │ ├── urosMsgTypes.h
│ │ └── app.h
│ ├── .cproject
│ └── .project
└── turtlesim-posix
│ ├── .gitignore
│ ├── .settings
│ ├── org.eclipse.cdt.ui.prefs
│ └── language.settings.xml
│ ├── include
│ ├── .directory
│ └── urosHandlers.h
│ ├── .directory
│ ├── project.mk
│ ├── .externalToolBuilders
│ └── org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder.launch
│ ├── misc
│ ├── urosgen.cfg
│ ├── turtlesim-posix.launch
│ └── urosstan.cfg
│ ├── src
│ └── main.c
│ └── .project
├── .gitignore
├── tools
├── urosgen
│ ├── src
│ │ └── urosgen.pyc
│ ├── .project
│ ├── .pydevproject
│ └── demos
│ │ ├── urosgen_demo.cfg
│ │ └── urosHandlers.h
└── urosstan
│ ├── .project
│ └── .pydevproject
├── misc
├── eclipse_syntax_coloring.tar.gz
└── gensrclist.py
├── .project
├── .pydevproject
├── mk
├── posix.mk
├── chibios.mk
├── lwip.mk
└── uros.mk
├── README.md
├── .settings
└── org.eclipse.cdt.managedbuilder.core.prefs
├── TODO
├── COPYING
├── include
├── lld
│ ├── uros_lld_base.h
│ ├── uros_lld_threading.h
│ └── uros_lld_conn.h
├── urosUser.h
├── urosRpcSlave.h
└── urosThreading.h
├── template
└── src
│ └── lld
│ ├── uros_lld_node.c
│ └── uros_lld_base.c
└── src
└── lld
└── posix
└── uros_lld_base.c
/doc/.gitignore:
--------------------------------------------------------------------------------
1 | html
2 |
--------------------------------------------------------------------------------
/demos/benchmark-chibios+lwip/.gitignore:
--------------------------------------------------------------------------------
1 | build
2 | .dep
3 |
--------------------------------------------------------------------------------
/demos/turtlesim-chibios+lwip/.gitignore:
--------------------------------------------------------------------------------
1 | build
2 | .dep
3 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | *~
2 | *.tmp
3 | *.bak
4 | *.old
5 | *.o
6 | .directory
7 |
--------------------------------------------------------------------------------
/demos/benchmark-linux/.gitignore:
--------------------------------------------------------------------------------
1 | build
2 | .dep
3 | urosNode.config
4 |
--------------------------------------------------------------------------------
/demos/turtlesim-posix/.gitignore:
--------------------------------------------------------------------------------
1 | build
2 | .dep
3 | urosNode.config
4 |
--------------------------------------------------------------------------------
/doc/doxygen/img/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openrobots-dev/uROSnode/HEAD/doc/doxygen/img/logo.png
--------------------------------------------------------------------------------
/doc/doxygen/img/gen_flow.dia:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openrobots-dev/uROSnode/HEAD/doc/doxygen/img/gen_flow.dia
--------------------------------------------------------------------------------
/doc/doxygen/img/stan_flow.dia:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openrobots-dev/uROSnode/HEAD/doc/doxygen/img/stan_flow.dia
--------------------------------------------------------------------------------
/tools/urosgen/src/urosgen.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openrobots-dev/uROSnode/HEAD/tools/urosgen/src/urosgen.pyc
--------------------------------------------------------------------------------
/demos/turtlesim-posix/.settings/org.eclipse.cdt.ui.prefs:
--------------------------------------------------------------------------------
1 | eclipse.preferences.version=1
2 | formatter_settings_version=1
3 |
--------------------------------------------------------------------------------
/misc/eclipse_syntax_coloring.tar.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openrobots-dev/uROSnode/HEAD/misc/eclipse_syntax_coloring.tar.gz
--------------------------------------------------------------------------------
/demos/turtlesim-posix/include/.directory:
--------------------------------------------------------------------------------
1 | [Dolphin]
2 | Timestamp=2012,11,22,0,15,23
3 | Version=2
4 |
5 | [Settings]
6 | ShowDotFiles=true
7 |
--------------------------------------------------------------------------------
/demos/turtlesim-posix/.directory:
--------------------------------------------------------------------------------
1 | [Dolphin]
2 | AdditionalInfoV2=Details_Size,Details_Date,CustomizedDetails
3 | Timestamp=2012,11,23,20,28,52
4 | Version=2
5 | ViewMode=1
6 |
--------------------------------------------------------------------------------
/.project:
--------------------------------------------------------------------------------
1 |
2 |