diff options
| author | Otto Mattik <otto@mattik.org> | 2021-07-08 18:10:55 +0200 |
|---|---|---|
| committer | Otto Mattik <otto@mattik.org> | 2021-07-08 18:10:55 +0200 |
| commit | da34d97efb21719b2b332f8c60b2750d11bcde1f (patch) | |
| tree | 2de9fe89f6d79b8ebfcde64c5e86204e904aedf2 /armen.c | |
| download | armen-1.0.tar.gz armen-1.0.zip | |
Diffstat (limited to 'armen.c')
| -rw-r--r-- | armen.c | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -0,0 +1,25 @@ +/************************************************************************/ +/* */ +/* File: armen.c */ +/* Description: a simple wrapper for OS */ +/* Version: 1.0 */ +/* Author: Otto Mattik */ +/* */ +/* (C)Copyright Otto Mattik 2014-2021. */ +/* */ +/* This file is a part of 'armen' (a tiny operating system). */ +/* 'armen' is distributed under the CeCILL-V2.1 licence. For more */ +/* details about this licence, please visit the website cecill.info */ +/* */ +/************************************************************************/ + +#include "core.c" +#include "thread.c" +#include "gpio.c" +#if defined(UART) && (UART != 0) + #include "uart.c" +#endif +#ifdef USE_SEM + #include "sem.c" +#endif + |
