-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathlibrary.json
More file actions
37 lines (37 loc) · 1.07 KB
/
library.json
File metadata and controls
37 lines (37 loc) · 1.07 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
{
"name": "companders",
"version": "1.0.7",
"description": "Fixed-point A-Law and Mu-Law companding library with IIR DC offset correction for embedded systems",
"keywords": "companding, a-law, mu-law, audio, compression, fixed-point, embedded, dsp",
"repository": {
"type": "git",
"url": "https://github.com/deftio/companders.git"
},
"authors": [
{
"name": "M. A. Chatterjee",
"email": "deftio@deftio.com",
"maintainer": true
}
],
"license": "BSD-2-Clause",
"homepage": "https://deftio.github.io/companders/",
"frameworks": ["arduino", "espidf"],
"platforms": "*",
"build": {
"srcDir": "src",
"includeDir": "src"
},
"examples": [
{
"name": "Arduino Compander",
"base": "examples/arduino_compander",
"files": ["arduino_compander.ino"]
},
{
"name": "PlatformIO Compander",
"base": "examples/platformio_compander",
"files": ["src/main.cpp"]
}
]
}