Update preset.
[bertos.git] / doc / 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 Have a look at \ref short_introduction page for a quick overview of
23 the BeRTOS system.
24
25 \section history History and Motivation
26
27 BeRTOS was born as a extremely modular, highly optimized and fine-tuned
28 operating system for embedded programming.
29 As a result, each module has its own scope and can be used alone or in
30 cooperation with other modules.
31 It's even possible to use most of the drivers without activating the kernel module.
32
33 We have grown it following our guidelines: simplicity and beauty.
34 These guidelines made it possible to evolve it in a full-featured real
35 time operating system, with more modularity than many other embedded OSes,
36 without giving up reliability and performace.
37
38 To achieve the highest possible reusability, most BeRTOS components are
39 designed for fine-grained modularity and minimal external dependencies.
40 Most non-essential features can be configured out for applications with small
41 memory footprint requirements.
42
43 The basic design principles are explained in the \ref oop page.
44
45 \section features Features
46
47   - multitasking kernel with IPC, semaphores, priority levels;
48   - a comprehensive set of generic drivers for a wide range of devices,
49     which can be easily customized to the actual hardware: timer, serial,
50     adc, ntc, pwm, stepper motors, dc motors, lcd, keyboards, buzzer, eeprom;
51   - full graphic subsystem for simple displays, with font support, bitmaps,
52     clipping, text formatting, interactive menus;
53   - simple console with command parser;
54   - readline-like support for command history;
55   - entropy generator and random numbers generator optimized for embedded
56     systems;
57   - checksumming and hashing functions (CRC, MD2);
58   - full hash-table implementation with double-hashing collision resolution;
59   - XMODEM protocol implementation;
60   - RLE compression algorithm;
61
62 \section structure Directory Structure
63
64 The modules are sorted in subdirectories by their category:
65
66   - app/            : demo applications;
67   - bertos/algo/    : algorithms;
68   - bertos/cfg/     : configuration stuff;
69   - bertos/drv/     : hardware drivers;
70   - bertos/dt/      : experimental object oriented gui toolkit;
71   - bertos/emul/    : Qt-based emulator framework for embedded applications;
72   - bertos/fonts/   : fonts;
73   - bertos/fs/      : file system related stuff;
74   - bertos/gfx/     : general purpose graphics routines;
75   - bertos/gui/     : widgets for simple displays;
76   - bertos/hw/      : hardware-specific declarations;
77   - bertos/icons/   : conversion tool from image TXT format to LCD bitmap;
78   - bertos/kern/    : multitasking kernel;
79   - bertos/mware/   : algorithms, other standalone code;
80   - bertos/struct/  : containers and other data structures;
81   - bertos/os/      : OS-abstraction layers for hosted environments;
82   - doc/            : documentation;
83
84 The top-level directory contains a few support headers that are meant to be
85 usable by any C/C++ embedded or hosted application.
86
87 See the \ref dev_status page for information about the various drivers.
88
89 \section license License
90
91 BeRTOS is provided under the term of the GNU General Public License
92 (see LICENSE.GPL) with following exception:
93
94 \verbatim
95
96 As a special exception, you may use this file as part of a free software
97 library without restriction.  Specifically, if other files instantiate
98 templates or use macros or inline functions from this file, or you compile
99 this file and link it with other files to produce an executable, this
100 file does not by itself cause the resulting executable to be covered by
101 the GNU General Public License.  This exception does not however
102 invalidate any other reasons why the executable file might be covered by
103 the GNU General Public License.
104
105 \endverbatim
106
107 */