Better warning handling, without the need of that awful check.
[bertos.git] / README.bertos
1 /*!
2 <!--
3 This document is automatically processed by Doxygen (http://www.doxygen.org/).
4 Don't remove special formatting tags.
5 This section won't be processed unless enabled.
6
7 See STATUS for further information and tips about Doxygen tags.
8 -->
9
10
11 \mainpage
12
13 \section overview Overview
14
15 BeRTOS is a real-time operating system designed for building applications
16 for embedded systems, like reference boards, test boards, or custom boards.
17
18 It has a modular structure: its components can be used in very different
19 environments, from 8-bit processor to Linux and Win32 hosted application
20 (for debug purpose), using a wide range of compilers.
21
22 \section history History and Motivation
23
24 BeRTOS was born as a collection of useful, highly optimized and fine-tuned
25 libraries for embedded systems.  Each library had its own scope and could be
26 used singularly in a project, though they were also meant to cooperate to
27 build the whole underlying software layer commonly called "operating system".
28
29 We have grown it following our guidelines: simplicity and beauty.
30 These guidelines made it possible to evolve it in a full-featured real
31 time operating system, with more modularity than many other embedded OSes,
32 without giving up reliability and performace.
33
34 To achieve the highest possible reusability, most BeRTOS components are
35 designed for fine-grained modularity and minimal external dependencies.
36 Most non-essential features can be configured out for applications with small
37 memory footprint requirements.
38
39 \section features Features
40
41   - multitasking kernel with IPC, semaphores, priority levels;
42   - a comprehensive set of generic drivers for a wide range of devices,
43     which can be easily customized to the actual hardware: timer, serial,
44     adc, ntc, pwm, stepper motors, dc motors, lcd, keyboards, buzzer, eeprom;
45   - full graphic subsystem for simple displays, with font support, bitmaps,
46     clipping, text formatting, interactive menus;
47   - simple console with command parser;
48   - readline-like support for command history;
49   - entropy generator and random numbers generator optimized for embedded
50     systems;
51   - checksumming and hashing functions (CRC, MD2);
52   - full hash-table implementation with double-hashing collision resolution;
53   - XMODEM protocol implementation;
54   - RLE compression algorithm;
55
56 \section structure Directory Structure
57
58 The modules are sorted in subdirectories by their category:
59
60   - app/            : demo applications;
61   - bertos/algo/    : algorithms;
62   - bertos/cfg/     : configuration stuff;
63   - bertos/drv/     : hardware drivers;
64   - bertos/dt/      : experimental object oriented gui toolkit;
65   - bertos/emul/    : Qt-based emulator framework for embedded applications;
66   - bertos/fonts/   : fonts;
67   - bertos/fs/      : file system related stuff;
68   - bertos/gfx/     : general purpose graphics routines;
69   - bertos/gui/     : widgets for simple displays;
70   - bertos/hw/      : hardware-specific declarations;
71   - bertos/icons/   : conversion tool from image TXT format to LCD bitmap;
72   - bertos/kern/    : multitasking kernel;
73   - bertos/mware/   : algorithms, other standalone code;
74   - bertos/struct/  : containers and other data structures;
75   - bertos/os/      : OS-abstraction layers for hosted environments;
76   - doc/            : documentation;
77
78 The top-level directory contains a few support headers that are meant to be
79 usable by any C/C++ embedded or hosted application.
80
81 See the \ref dev_status page for information about the various drivers.
82
83 \section license License
84
85 BeRTOS is provided under the term of the GNU General Public License
86 (see LICENSE.GPL) with following exception:
87
88 \verbatim
89
90 As a special exception, you may use this file as part of a free software
91 library without restriction.  Specifically, if other files instantiate
92 templates or use macros or inline functions from this file, or you compile
93 this file and link it with other files to produce an executable, this
94 file does not by itself cause the resulting executable to be covered by
95 the GNU General Public License.  This exception does not however
96 invalidate any other reasons why the executable file might be covered by
97 the GNU General Public License.
98
99 \endverbatim
100
101 */