-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathlibrary.json
More file actions
46 lines (46 loc) · 1.23 KB
/
library.json
File metadata and controls
46 lines (46 loc) · 1.23 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
{
"name": "FR_Math",
"version": "2.0.5",
"description": "Compact fixed-point math library for embedded systems. Integer-only with caller-selectable radix. Trig, log/exp, sqrt, hypot, wave generators, ADSR, and 2D transforms in 4KB of flash. Zero dependencies.",
"keywords": [
"fixed-point",
"math",
"dsp",
"trigonometry",
"integer-math",
"embedded",
"signal-processing",
"waveform",
"no-float",
"radix"
],
"repository": {
"type": "git",
"url": "https://github.com/deftio/fr_math.git"
},
"authors": [
{
"name": "M. A. Chatterjee",
"email": "deftio@deftio.com",
"url": "https://www.deftio.com",
"maintainer": true
}
],
"license": "BSD-2-Clause",
"homepage": "https://github.com/deftio/fr_math",
"frameworks": "*",
"platforms": "*",
"build": {
"srcFilter": ["+<FR_math.c>"],
"includeDir": "src"
},
"export": {
"include": [
"src/*",
"examples/*",
"LICENSE.txt",
"README.md",
"library.properties"
]
}
}