Skip to content

Commit 8e84f3a

Browse files
committed
Initial Tapeout
1 parent b898175 commit 8e84f3a

File tree

3 files changed

+21
-5
lines changed

3 files changed

+21
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: ci
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- main
8+
9+
jobs:
10+
lint:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: Lint
15+
run: |
16+
make fmt

proves_fc_v5b/proves_fc_v5b.py

Whitespace-only changes.

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
2-
name = "proves-circuitpython-sx1280"
3-
version = "1.0.2"
4-
description = "CircuitPython driver for the Semtech SX1280 LoRa radio transceiver."
2+
name = "circuitpython_fc_v5b_hal"
3+
version = "1.0.0"
4+
description = "A Simple CircuitPython Hardware Abstraction Layer for PROVES V5b Flight Controller Boards."
55
readme = "README.md"
66
requires-python = ">=3.13"
77
dependencies = [
@@ -17,10 +17,10 @@ line-ending = "lf"
1717

1818
[tool.setuptools.packages.find]
1919
exclude = ["typings*"]
20-
include = ["proves_sx1280*"]
20+
include = ["proves_fc_v5b*"]
2121

2222
[tool.pyright]
23-
include = ["sx1280.py"]
23+
include = ["proves_fc_v5b.py"]
2424
exclude = [
2525
"**/__pycache__",
2626
".venv",

0 commit comments

Comments
 (0)