earnie08 / elma

An event loop manager for reactive, embedded systems

Home Page:http://klavinslab.org/elma/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Elma

Elma is an event loop and process manager for embedded and reactive systems. Elma is structured as a C++ library of classes on top of which you build your own C++ project. It keeps track of processes, finite state machines, events, and communication channels, executing them at specified frequencies. Elma was developed as part of the University of Washington's ECE P 520 course on advanced embedded systems programming. More information on how Elma was designed can be found in the links below:

Installation

The source code for Elma is on Github.

From Dockerhub

To get started, you will need a C++ build environment. We have provided one with the Docker container elma, which you can use as follows:

git clone https://github.com/klavinslab/elma.git
cd elma
docker run -v $PWD:/source -it klavins/ecep520:elma bash
make
examples/bin/basic

From the Dockerfile

You can also build the docker environment, described in env/Dockerfile, yourself, with the following commands:

git clone https://github.com/klavinslab/elma.git
cd elma
docker build -t myelma env
docker run -v $PWD:/source -it myelma bash
make
examples/bin/basic

Manual Installation

To install Elma without using Docker, you will need to install the following tools:

Usage

See the examples in the examples directory for how to build new event loops with Elma.

License

This software is open source and uses the MIT license. Details can be found here.

About

An event loop manager for reactive, embedded systems

http://klavinslab.org/elma/

License:Other


Languages

Language:C++ 83.7%Language:Makefile 6.1%Language:HTML 6.0%Language:CSS 3.5%Language:C 0.7%