mirror of
https://github.com/lora-aprs/LoRa_APRS_iGate.git
synced 2026-02-04 14:54:29 +01:00
working cppcheck
This commit is contained in:
parent
9a9b494ab9
commit
7ae1238fe6
2
.github/workflows/build_check.yml
vendored
2
.github/workflows/build_check.yml
vendored
|
|
@ -18,7 +18,7 @@ jobs:
|
|||
- uses: actions/checkout@v2
|
||||
with:
|
||||
submodules: 'recursive'
|
||||
- run: platformio check --fail-on-defect low --fail-on-defect medium --fail-on-defect high --skip-packages --flags "--suppress=*:*.pio\* --inline-suppr" -v
|
||||
- run: platformio check --fail-on-defect low --fail-on-defect medium --fail-on-defect high --skip-packages --flags "--suppress=*:*.pio\* --inline-suppr lib/common/src" -v
|
||||
|
||||
PlatformIO-Build:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
2
.gitmodules
vendored
2
.gitmodules
vendored
|
|
@ -1,3 +1,3 @@
|
|||
[submodule "lib"]
|
||||
path = lib/Common
|
||||
path = lib/common
|
||||
url = ../LoRa_APRS_Common
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ lib_deps =
|
|||
peterus/LoRa-APRS-Lib @ 0.0.5
|
||||
check_tool = cppcheck
|
||||
check_flags =
|
||||
cppcheck: --suppress=*:*.pio\* --inline-suppr
|
||||
cppcheck: --suppress=*:*.pio\* --inline-suppr lib/common/src
|
||||
monitor_flags = --raw
|
||||
# activate for OTA Update, use the CALLSIGN from is-cfg.h as upload_port:
|
||||
#upload_protocol = espota
|
||||
|
|
|
|||
|
|
@ -114,8 +114,8 @@ public:
|
|||
virtual ~ProjectConfigurationManagement() {}
|
||||
|
||||
private:
|
||||
virtual Configuration * readProjectConfiguration(DynamicJsonDocument & data);
|
||||
virtual void writeProjectConfiguration(Configuration * conf, DynamicJsonDocument & data);
|
||||
virtual Configuration * readProjectConfiguration(DynamicJsonDocument & data) override;
|
||||
virtual void writeProjectConfiguration(Configuration * conf, DynamicJsonDocument & data) override;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue