Skip to content

Commit 0809bc2

Browse files
committed
Merge branch 'dev'
2 parents d61d83e + cba6d3e commit 0809bc2

File tree

163 files changed

+3111
-13604
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

163 files changed

+3111
-13604
lines changed

.github/workflows/pio-build.yaml

+15-4
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,33 @@ on:
44
pull_request:
55
push:
66
branches:
7+
- '2.0.0-fwk'
78
- dev
89

910
jobs:
1011
pio-build:
1112
runs-on: ubuntu-latest
1213

1314
steps:
14-
- uses: actions/checkout@v4
15-
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
18+
- name: Checkout UI
19+
run: |
20+
echo "Checkout UI"
21+
git clone https://github.com/mp-se/gravitymon-ui gravitymon-ui
22+
cp gravitymon-ui/dist/css/app.css.gz html/
23+
cp gravitymon-ui/dist/js/app.js.gz html/
24+
cp gravitymon-ui/dist/index.html html/
25+
1626
- name: Setup PlatformIO
1727
uses: n-vr/setup-platformio-action@v1.0.1
1828

1929
- name: PlatformIO Run
2030
uses: karniv00l/platformio-run-action@v1
2131
with:
22-
environments: "gravity-release,gravity32-release,gravity32c3-release,gravity32s2-release,gravity32s3-release,gravity32c3v1-release,gravity32lite-release"
32+
#environments: "gravity-release,gravity32-release,gravity32c3-release,gravity32s2-release,gravity32s3-release,gravity32c3v1-release,gravity32lite-release"
33+
environments: "gravity-release,gravity32-release,gravity32c3-release,gravity32s2-release,gravity32s3-release,gravity32lite-release"
2334
#targets: ""
2435
#project-dir: "./some_dir"
2536
#project-conf: "./some_dir/custom.ini"
@@ -30,7 +41,7 @@ jobs:
3041

3142
- uses: EndBug/add-and-commit@v9 # You can change this to use a specific version. https://github.com/marketplace/actions/add-commit
3243
with:
33-
add: 'bin'
44+
add: 'bin html'
3445
author_name: GitHub Action
3546
author_email: mp-se@noreply.github.com
3647
default_author: github_actor

.github/workflows/pre-commit.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,16 @@ on:
66
branches:
77
- master
88
- dev
9+
- '2.0.0-fwk'
910

1011
jobs:
1112
pre-commit:
1213
runs-on: ubuntu-latest
1314
steps:
1415
- uses: actions/checkout@v4
15-
- uses: actions/setup-python@v4
16+
- uses: actions/setup-python@v5
1617
- name: clang format support
1718
run: |
1819
sudo apt update
1920
sudo apt install clang-format cppcheck
20-
- uses: pre-commit/action@v3.0.0
21+
- uses: pre-commit/action@v3.0.1

.gitignore

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
1-
.pio/*
2-
.vscode/*
1+
.pio
2+
.vscode
3+
.env
4+
__pycache__
5+
_build
6+
env
37
*.map
48
src_docs/_build/*
59
.env/*
610
*.pyc
711
*.json
8-
*.txt
912
gcov/*.gcno
1013
gcov/*.gcov
1114
gcov/*.gcda
15+
.DS_Store

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021-22 Magnus
3+
Copyright (c) 2021-2024 Magnus
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

_.env

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export GITHUB_REPOSITORY=mp-se/gravitymon@master
2+
export GITHUB_TOKEN="$(gh auth token)"
3+
export SECRETS_GITHUB_TOKEN="$(gh auth token)"

bin/boot32.bin

8 KB
Binary file not shown.

bin/boot32c3.bin

8 KB
Binary file not shown.

bin/boot32lite.bin

8 KB
Binary file not shown.

bin/boot32s2.bin

8 KB
Binary file not shown.

bin/boot32s3.bin

8 KB
Binary file not shown.

bin/bootloader32c3.bin

12.9 KB
Binary file not shown.

bin/bootloader32lite.bin

17.1 KB
Binary file not shown.

bin/bootloader32s2.bin

13.3 KB
Binary file not shown.

bin/bootloader32s3.bin

14.8 KB
Binary file not shown.

bin/firmware.bin

33.9 KB
Binary file not shown.

bin/firmware32.bin

19.1 KB
Binary file not shown.

bin/firmware32c3.bin

31 KB
Binary file not shown.

bin/firmware32c3v1.bin

15.6 KB
Binary file not shown.

bin/firmware32lite.bin

19.1 KB
Binary file not shown.

bin/firmware32s2.bin

15.2 KB
Binary file not shown.

bin/firmware32s3.bin

18.1 KB
Binary file not shown.

bin/version.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "project":"gravmon", "version":"1.4.1", "html": [ ] }
1+
{ "project":"gravmon", "version":"2.0.0", "html": [ ] }

diagram.json

-66
This file was deleted.

gcov/README.md

-20
This file was deleted.

html/about.htm

-130
This file was deleted.

html/about.min.htm

-1
This file was deleted.

html/app.css.gz

29.8 KB
Binary file not shown.

html/app.js.gz

153 KB
Binary file not shown.

0 commit comments

Comments
 (0)