forked from RIOT-OS/RIOT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (97 loc) · 4.54 KB
/
index.html
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta name="description" content="RIOT OS : The Royal IoT Operating System" />
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
<title>RIOT OS</title>
</head>
<body>
<!-- HEADER -->
<!--<div id="riot_logo"> <img src="images/Logo_small.png"/></div>-->
<div id="header_wrap" class="outer">
<header class="inner">
<a id="forkme_banner" href="https://github.com/RIOT-OS/RIOT">View on GitHub</a>
<img id="riot_title" src="images/Logo_small.png"/>
<!--<h1 id="project_title">RIOT OS</h1>-->
<h2 id="project_tagline">The friendly Operating System for IoT</h2>
<section id="downloads">
<a class="zip_download_link" href="https://github.com/RIOT-OS/RIOT/zipball/master">Download this project as a .zip file</a>
<a class="tar_download_link" href="https://github.com/RIOT-OS/RIOT/tarball/master">Download this project as a tar.gz file</a>
</section>
</header>
</div>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
<p>RIOT leverages a microkernel to provide an energy-efficient operating system for IoT solutions.</p>
<div id="toc">
<h3>Table of Contents</h3>
<ul>
<li><a href="#feat">Features</a></li>
<li><a href="#doc">Documentation</a></li>
<li><a href="#community">Community</a></li>
</ul>
</div>
<a id="feat"><h1>RIOT is ...</h1></a>
<h2>1. Developer Friendly</h2>
<ul>
<li>Program in C or C++ like you're used to: </li>
</ul><pre><code>#include <stdio.h>
int main(void) {
puts("Hello world!\n");
while(1);
}
</code></pre>
<ul>
<li>Standard development tools such as gcc, gdb ...</li>
<li>Minimized hardware dependent code</li>
<li>Zero learning curve embedded programming</li>
</ul>
<h2>2. Efficient</h2>
<ul>
<li>Robustness & code-footprint flexibility due to the microkernel architecture</li>
<li>Tickless scheduler enabling maximum energy-efficiency</li>
<li>Real-time capability due to ultra-low interrupt latency (~50 clock cycles) and priority-based scheduling</li>
<li>Multi-threading with ultra-low threading overhead (<25 bytes per thread)</li>
<li>Code once, run both on 16-bit platforms (e.g. MSP430) and on 32-bit platforms (e.g. ARM)</li>
</ul>
<h2>3. IoT Ready</h2>
<ul>
<li>IoT network stack
<ul>
<li>6LoWPAN</li>
<li>IPv6</li>
<li>RPL</li>
<li>TCP and UDP</li>
</ul>
</li>
<li>Flexible memory management (static and dynamic memory allocation)</li>
<li>High resolution and long-term timers</li>
<li>FAT file system</li>
<li>Logging system</li>
<li>Wiselib support (C++ algorithm library, including routing, clustering, timesync, localization, security and more algorithms)</li>
</ul><a id="doc"><h1>Documentation</h1></a>
<p>Documentation about RIOT can be found in the corresponding Github wikis. For general issues with RIOT please refer the <a href="https://github.com/RIOT-OS/RIOT/wiki">RIOT wiki</a>, platform specific questions are addressed in the <a href="https://github.com/RIOT-OS/boards/wiki">boards wiki</a>.
More general information about how to compile, use, and implement for RIOT are available in our <a href="http://riot-os.org/api/">doxygen documentation</a>.</p>
<a id="community"><h1>Join the RIOT!</h1></a>
<p>Whether you are looking for help with writing an application for RIOT, learn more about it, or just want to stay in the loop, you are invited to join the <a href="http://lists.riot-os.org/mailman/listinfo/users">RIOT-users mailing list</a>. For developers who want to participate and contribute to the kernel development or integrate new MCU and platform support, the <a href="http://lists.riot-os.org/mailman/listinfo/devel">RIOT-devel mailing list</a> is the right place.</p>
<p>
To keep informed about latest progress in RIOT development, you can
subscribe to the GIT <a
href="http://lists.riot-os.org/mailman/listinfo/commits">commits mailing
list</a> or <a href="https://twitter.com/RIOT_OS">follow RIOT on
Twitter</a>.
</p>
</section>
</div>
<!-- FOOTER -->
<div id="footer_wrap" class="outer">
<footer class="inner">
<p class="copyright">RIOT OS maintained by <a href="https://github.com/RIOT-OS">RIOT-OS</a></p>
<p>Published with <a href="http://pages.github.com">GitHub Pages</a></p>
</footer>
</div>
</body>
</html>