aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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`.