-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (86 loc) · 3.21 KB
/
index.html
File metadata and controls
93 lines (86 loc) · 3.21 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>FR_Math — Fixed-Point Math for Embedded Systems</title>
<meta name="description" content="FR_Math is a C language fixed-point math library for embedded systems. No floating-point unit required. BSD-2-Clause.">
<!--
This page redirects to the documentation site in pages/.
The meta refresh fires after 0 seconds; the visible body below
acts as a fallback for users whose browsers block the refresh
and as a clear index of where the different forms of the
documentation live.
-->
<meta http-equiv="refresh" content="0; url=pages/index.html">
<link rel="canonical" href="pages/index.html">
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
Helvetica, Arial, sans-serif;
max-width: 40em;
margin: 3em auto;
padding: 0 1.5em;
line-height: 1.55;
color: #222;
}
h1 { font-size: 1.6em; margin-bottom: 0.2em; }
.tagline { color: #666; margin-top: 0; }
.card {
border: 1px solid #ddd;
border-radius: 6px;
padding: 1em 1.25em;
margin: 1em 0;
background: #fafafa;
}
.card h2 { margin-top: 0; font-size: 1.15em; }
a { color: #0645ad; text-decoration: none; }
a:hover { text-decoration: underline; }
code {
background: #eee;
padding: 1px 4px;
border-radius: 3px;
font-size: 0.95em;
}
</style>
</head>
<body>
<h1>FR_Math</h1>
<p class="tagline">A C language fixed-point math library for embedded systems.</p>
<p>You should be redirected to the documentation site automatically.
If not, pick a link below.</p>
<div class="card">
<h2>Browse the docs in your browser</h2>
<p><a href="pages/index.html"><strong>pages/index.html</strong></a>
— rendered HTML documentation site with navigation, code
samples, and the full API reference.</p>
<p>If you’re viewing this on GitHub Pages, this is the canonical
site at <a href="https://deftio.github.io/fr_math/">deftio.github.io/fr_math/</a>.</p>
</div>
<div class="card">
<h2>Read the docs in plain text</h2>
<p><a href="docs/README.md"><strong>docs/README.md</strong></a>
— the same content as plain markdown, for reading in a
terminal, an editor, or directly on GitHub without any tooling.
Includes:</p>
<ul>
<li><a href="docs/getting-started.md">getting-started.md</a></li>
<li><a href="docs/fixed-point-primer.md">fixed-point-primer.md</a></li>
<li><a href="docs/api-reference.md">api-reference.md</a></li>
<li><a href="docs/examples.md">examples.md</a></li>
<li><a href="docs/building.md">building.md</a></li>
<li><a href="docs/releases.md">releases.md</a></li>
</ul>
</div>
<div class="card">
<h2>Go to the source</h2>
<p><a href="https://github.com/deftio/fr_math"><strong>github.com/deftio/fr_math</strong></a>
— source tree, release notes, issue tracker, and
<a href="README.md"><code>README.md</code></a>.</p>
</div>
<p style="color:#888; font-size:0.9em; margin-top:3em;">
© 2000–2026 M. A. Chatterjee. BSD-2-Clause.
</p>
</body>
</html>