1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
Lightweight Communications and Marshalling (LCM) {#mainpage}
====
LCM is a set of libraries and tools for message passing and data marshalling,
targeted at real-time systems where high-bandwidth and low latency are
critical. It provides a publish/subscribe message passing model and automatic
marshalling/unmarshalling code generation with bindings for applications in a
variety of programming languages.
# Quick links {#main_quick_links}
- [Downloads](https://github.com/lcm-proj/lcm/releases)
- \ref build_instructions
- \ref tutorial_general
- [GitHub site](https://github.com/lcm-proj/lcm)
# Features
* Low-latency inter-process communication
* Efficient broadcast mechanism using UDP Multicast
* Type-safe message marshalling
* User-friendly logging and playback
* No centralized "database" or "hub" -- peers communicate directly
* No daemons
* Few dependencies
## Supported platforms / languages
* Platforms:
* GNU/Linux
* OS X
* Windows
* Any POSIX-1.2001 system (e.g., Cygwin, Solaris, BSD, etc.)
* Languages
* C
* C++
* C#
* Java
* Lua
* MATLAB
* Python
## Forks / clones
- https://github.com/vooon/lcm-vala - Vala language support
# API Reference {#main_api_ref}
- [C](\ref LcmC)
- [C++](\ref LcmCpp)
- [C# / .NET](lcm-dotnet/index.html)
- [Java](javadocs/index.html)
- [Lua](\ref lua_api)
- [Python](python/index.html)
# Additional resources
- \ref type_specification
- \ref udp_multicast_protocol
- \ref log_file_format
- [User mailing list](http://groups.google.com/group/lcm-users)
- [Developer mailing list](http://groups.google.com/group/lcm-dev)
## Publications and application notes
- [LCM Overview](http://people.csail.mit.edu/albert/pubs/2010-huang-olson-moore-lcm-iros.pdf) - Describes the design principles of LCM, the best place to start for a quick understanding of LCM. 6 pages (PDF).
- _IROS, Taipei, Taiwan, Oct 2010._
- [Technical Report](http://dspace.mit.edu/bitstream/handle/1721.1/46708/MIT-CSAIL-TR-2009-041.pdf) - An expanded version of the overview, provides a more comprehensive description. 17 pages (PDF).
- _Technical Report MIT-CSAIL-TR-2009-041, Massachusetts Institute of Technology, 2009_
- \ref multicast_setup
- \ref java_notes
# Who uses LCM?
LCM was originally developed in 2006 for the MIT DARPA Urban Challenge team,
and has since been used in many robotic and autonomous systems, in both
research and production environments. Its users have included:
* Autonomos GmbH
* BAE Systems
* Bender Robotics
* Carnegie Mellon University
* ETH Zurich
* Ford Motor Company
* Georgia Tech
* Google
* Korea Advanced Institute of Science and Technology (KAIST)
* MIT
* Soar Technology
* University of Michigan
* Volvo Car Group
* Woods Hole Oceanographic Institute
If you're using LCM for development or production, we'd love to hear about it. Let us know by sending a message to the [mailing list](http://groups.google.com/group/lcm-users).
|