Skip to content

Commit 70a9390

Browse files
committed
updated conflicts from cherry pick
1 parent 68288a9 commit 70a9390

46 files changed

Lines changed: 138 additions & 1198 deletions

Some content is hidden

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

.github/workflows/manual-flash.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
- name: Download latest firmware artifact
4343
if: github.event.inputs.use_latest_artifact == 'yes'
44-
uses: dawidd6/action-download-artifact@v3
44+
uses: dawidd6/action-download-artifact@v6
4545
with:
4646
workflow: manual-compile.yaml
4747
name: firmware-binary

.github/workflows/manual-upload.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545

4646
- name: Download release artifacts
4747
if: github.event.inputs.use_release_artifact == 'yes'
48-
uses: dawidd6/action-download-artifact@v3
48+
uses: dawidd6/action-download-artifact@v6
4949
with:
5050
workflow: manual-release.yaml
5151
name: release-artifacts

.github/workflows/pr-workflow.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Pull Request Workflow
33
on:
44
# Runs on PR open
55
pull_request:
6-
types: [opened, reopened, synchronize]
6+
types: [opened, reopened, synchronize, edited]
77
branches:
88
- master # or 'main' depending on your main branch
99

.gitmodules

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,3 +131,9 @@
131131
[submodule "test/external/fff"]
132132
path = test/external/fff
133133
url = https://github.com/meekrosoft/fff.git
134+
[submodule "lib/FlightControl-platform-dependencies"]
135+
path = lib/FlightControl-platform-dependencies
136+
url = https://github.com/gemsiot/FlightControl-platform-dependencies
137+
[submodule "lib/FlightControl-hardware-dependencies"]
138+
path = lib/FlightControl-hardware-dependencies
139+
url = https://github.com/gemsiot/FlightControl-hardware-dependencies

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.14)
33
project(FlightControl_Demo_Tests)
44

55
# Specify C++ standard
6-
set(CMAKE_CXX_STANDARD 14)
6+
set(CMAKE_CXX_STANDARD 17)
77
set(CMAKE_CXX_STANDARD_REQUIRED ON)
88

99
# Add test directory

lib/Driver_-_Li710

lib/Driver_-_Talon-SDI12

src/FlightControl_Demo.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ SDI12Talon sdi12(0, 0x14); //Instantiate SDI12 talon with alt - null port and ha
7979
PCAL9535A ioAlpha(0x20);
8080
PCAL9535A ioBeta(0x21);
8181
SDI12TalonAdapter realSdi12(sdi12);
82+
ParticleTimeProvider realTimeProvider;
8283

8384
String globalNodeID = ""; //Store current node ID
8485

0 commit comments

Comments
 (0)