Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync devel with master #134

Merged
merged 7 commits into from
May 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions .github/workflows/devel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: PlatformIO

on:
pull_request:
branches:
- devel
paths-ignore:
- '**/README.md'

jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 1
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U platformio
pio pkg update
- name: Testing ESP32 Custom Board
run: |
export ICENAV3_LON=13.404
export ICENAV3_LAT=52.520
pio run
- name: Testing ESP32S3 MakerFabs Board
run: |
export ICENAV3_LON=13.404
export ICENAV3_LAT=52.520
pio run -e MAKERF_ESP32S3

28 changes: 15 additions & 13 deletions .github/workflows/platformio.yml
Original file line number Diff line number Diff line change
@@ -1,40 +1,42 @@
name: PlatformIO

on:
push:
branches:
- master

pull_request:
branches:
- master
paths-ignore:
- '**/README.md'

jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
python-version: [3.7]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
python-version: ${{ matrix.python-version }}
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U platformio
pio pkg update
- name: Testing ESP32 Board
- name: Testing ESP32 Custom Board
run: |
export ICENAV3_LON=13.404
export ICENAV3_LAT=52.520
pio run
- name: Testing ESP32S3 Board
- name: Testing ESP32S3 MakerFabs Board
run: |
export ICENAV3_LON=13.404
export ICENAV3_LAT=52.520
pio run
pio run -e MAKERF_ESP32S3

18 changes: 11 additions & 7 deletions .github/workflows/schedule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,18 @@ jobs:
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
python-version: [3.7]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
python-version: ${{ matrix.python-version }}
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -26,7 +30,7 @@ jobs:
run: |
export ICENAV3_LON=13.404
export ICENAV3_LAT=52.520
pio run
pio run -e CUSTOMBOARD -e MAKERF_ESP32S3



3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ ESP32 Based GPS Navigator.

> [!CAUTION]
> Do not use in production.
* Note: Under development (experimental features under dev branch)

## Screenshots
|<img src="images/dev/splash.jpg">|<img src="images/dev/compass.jpg">|<img src="images/dev/rendermap.jpg">|<img src="images/dev/vectormap.jpg">|<img src="images/dev/satinfo.jpg">|
Expand Down Expand Up @@ -172,7 +173,7 @@ If the GPS module supports multiple GNSS, uncomment the following flag in the pl
- [x] Optimize code
- [ ] Fix bugs!
- [ ] Web file server

## Credits

* Added support to [Makerfabs ESP32-S3 Parallel TFT with Touch 3.5" ILI9488](https://www.makerfabs.com/esp32-s3-parallel-tft-with-touch-ili9488.html) (thanks to [@hpsaturn](https://github.com/hpsaturn))
Expand Down
Loading