Skip to content

Commit

Permalink
Revisit folder structure to comply with Arduino specs, v1.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
loginov-rocks committed Aug 16, 2024
1 parent 8042e21 commit 4af88e8
Show file tree
Hide file tree
Showing 23 changed files with 14 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/arduino-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Arduino Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: arduino/arduino-lint-action@v1
with:
compliance: strict
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/platformio-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ jobs:
name: PlatformIO Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: karniv00l/platformio-run-action@v1
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
.DS_Store
# PlatformIO IDE defaults
.pio
.vscode/.browse.c_cpp.db*
.vscode/c_cpp_properties.json
.vscode/launch.json
.vscode/ipch

# Custom
.DS_Store
3 changes: 0 additions & 3 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,5 @@
// for the documentation about the extensions.json format
"recommendations": [
"platformio.platformio-ide"
],
"unwantedRecommendations": [
"ms-vscode.cpptools-extension-pack"
]
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file.
File renamed without changes.
Empty file.
File renamed without changes.
Empty file.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=UbxGps
version=1.5.1
version=1.5.2
author=Danila Loginov <danila@loginov.rocks>
maintainer=Danila Loginov <danila@loginov.rocks>
sentence=A library for the fastest and simplest communication with u-blox GPS modules.
Expand Down
19 changes: 7 additions & 12 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -12,35 +12,30 @@
; default_envs = mega_autoconfiguration

[env]
platform = atmelavr
framework = arduino
monitor_speed = 115200

[env:mega_autoconfiguration]
platform = atmelavr
board = megaatmega2560
build_src_filter = +<../examples/Mega_AutoConfiguration.cpp>
build_src_filter = +<../examples/Mega_AutoConfiguration/Mega_AutoConfiguration.cpp>

[env:mega_serialbridge]
platform = atmelavr
board = megaatmega2560
build_src_filter = +<../examples/Mega_SerialBridge.cpp>
build_src_filter = +<../examples/Mega_SerialBridge/Mega_SerialBridge.cpp>

[env:mega_ubxgpsnavpvt]
platform = atmelavr
board = megaatmega2560
build_src_filter = +<../examples/Mega_UbxGpsNavPvt.cpp>
build_src_filter = +<../examples/Mega_UbxGpsNavPvt/Mega_UbxGpsNavPvt.cpp>

[env:mega_ubxgpsnavpvt8]
platform = atmelavr
board = megaatmega2560
build_src_filter = +<../examples/Mega_UbxGpsNavPvt8.cpp>
build_src_filter = +<../examples/Mega_UbxGpsNavPvt8/Mega_UbxGpsNavPvt8.cpp>

[env:uno_serialbridge]
platform = atmelavr
board = uno
build_src_filter = +<../examples/Uno_SerialBridge.cpp>
build_src_filter = +<../examples/Uno_SerialBridge/Uno_SerialBridge.cpp>

[env:uno_ubxgpsnavpvt]
platform = atmelavr
board = uno
build_src_filter = +<../examples/Uno_UbxGpsNavPvt.cpp>
build_src_filter = +<../examples/Uno_UbxGpsNavPvt/Uno_UbxGpsNavPvt.cpp>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 4af88e8

Please sign in to comment.