aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2014-04-09 23:23:01 +0200
committerJakob Odersky <jodersky@gmail.com>2014-04-09 23:23:01 +0200
commitd5a097519a3b4cf118f23eb95a16805b948e77eb (patch)
treec076d01ddebe42cc889afe3db20617dc9065b09e
parent3429af64d22ee2a6d8cffc8429e145474467a963 (diff)
downloadmux-master.tar.gz
mux-master.tar.bz2
mux-master.zip
update readmeHEADmaster
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 4bfc450..099abff 100644
--- a/README.md
+++ b/README.md
@@ -6,9 +6,9 @@ Mux is a real-time preemptive kernel for 8-bit AVR microcontrollers. It is desig
## Usage
Mux is divided into three types of components:
-1. kernel (in "kernel"), self explanatory, contains kernel sources
-2. application (in "apps"), can call any kernel functions and represent the actual logic in a firmware build
-3. hardware modules ("in modules"), custom hardware modules, such as specifically connected circuit boards, that may be used by applications
+ 1. kernel (in "kernel"), self explanatory, contains kernel sources
+ 2. application (in "apps"), can call any kernel functions and represent the actual logic in a firmware build
+ 3. hardware modules ("in modules"), custom hardware modules, such as specifically connected circuit boards, that may be used by applications
Creating an application that uses mux as a kernel is easy, simply copy the template application and edit the various entry points (best described by looking at the template source code) to use your business code. Compile the application and kernel to a firmware image with `APP=<appname> make`. Upload `make upload`.