/************************************************************************/ /* */ /* 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