Skip to content

Commit c98ff35

Browse files
authored
make this a lib
1 parent efd029f commit c98ff35

File tree

4 files changed

+56
-0
lines changed

4 files changed

+56
-0
lines changed

.github/workflows/arduino-lint.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: Arduino Lint
2+
3+
on: [push, pull_request]
4+
jobs:
5+
lint:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v3
9+
- uses: arduino/arduino-lint-action@v1

keywords.txt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Datatypes (KEYWORD1)
2+
Fixed KEYWORD1
3+
Variable KEYWORD1
4+
5+
# Methods and Functions (KEYWORD2)
6+
malloc KEYWORD2
7+
free KEYWORD2
8+
freeMemory KEYWORD2
9+
maxBlockSize KEYWORD2
10+
print KEYWORD2
11+
12+
# Structures (KEYWORD3)
13+
# structure KEYWORD3
14+
15+
# Constants (LITERAL1)
16+
MemoryPool LITERAL1

library.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "MemoryPool",
3+
"keywords": "memory",
4+
"description": "A simple memory pool for fixed and variable sizes",
5+
"authors":
6+
{
7+
"name": "Bert Melis",
8+
"url": "https://github.com/bertmelis"
9+
},
10+
"license": "MIT",
11+
"homepage": "https://github.com/bertmelis/MemoryPool",
12+
"repository":
13+
{
14+
"type": "git",
15+
"url": "https://github.com/bertmelis/MemoryPool.git"
16+
},
17+
"version": "0.1.0",
18+
"frameworks": "*",
19+
"platforms": "*",
20+
"headers": ["MemoryPool.h"]
21+
}

library.properties

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name=MemoryPool
2+
version=0.1.0
3+
author=Bert Melis
4+
maintainer=Bert Melis
5+
sentence=A simple memory pool for fixed and variable sizes
6+
paragraph=
7+
category=Other
8+
url=https://github.com/bertmelis/MemoryPool
9+
architectures=*
10+
includes=MemoryPool.h

0 commit comments

Comments
 (0)