blob: 37fc04a5e404da0570bd77056f0eb3a7a80b0b0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
|