-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
8ada1a7 Indicate hearbeat protocol state in node map 1f744c6 Fix manufacturer-specific error bit 0f249e1 Fix USE_SCHED_FIFO option ef9b9f8 Add test for automatic bus-off recovery 14dac66 Add configurable delay before attempting bus-off recovery 1a18e19 Crude recovery from bus-off 0249ea7 Move bus-off error behavior from recovery to actual bus-off fcf98e4 Split NMT Initialisation state into its three sub-states 5b48daf Add API to retrieve the active node ID 88f0abf Pass the network handle to callback functions instead of cb_arg a4b63d7 Call EMCY callback when entering bus off condition ac8cf72 Allow EMCY callback to enable the error behavior f07091e Fix error behaviour tests bcee891 Only trigger the Error behaviour on the mandatory events 6735cc1 Synchronize PDO triggering with the c-open main thread 62d787b Fix SDO time-out on large segmented transfers 742ca8d Bump cmake tools 1095327 Only send PDOs in NMT Operational 49038f8 Deliver SYNC locally 291d545 socketcan: check for existing interface f3b97db Do not validate invalid COBID 07676c8 Fix NMT command 2fb21ae Run apt-get update in build job 07b89db Enable CodeQL semantic code analysis 9e1443d Update README a384e88 Set defaults only if main project 41beae0 Fix gtest warning on embedded targets cdac693 Update cmake-tools 061a5b1 Add CO_EXPORT to communication objects 36dda36 Redefinition of typedef not allowed in C99 88a74ab Migrate to Github Actions e2494e3 Fix corrupt OD load following a non-existent object ca4688e Pass the read/write intent to the OD store open call dc38946 Tests for co_pdo_trigger_with_obj 370956d Don't trigger disabled PDOs e9627cf Fix multiple data corruption in OD load 5ab1a5e Add OD load test-case Based-On-Commit: 8ada1a7 Change-Id: Ic6447abb98f7bb1ade39e427661ca49143f9d297
- Loading branch information
rt-labs bot
committed
Jul 2, 2024
1 parent
c3a0778
commit 5588bb5
Showing
31 changed files
with
727 additions
and
301 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Build | ||
on: [push, pull_request] | ||
env: | ||
BUILD_TYPE: Release | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
|
||
- name: Apt update | ||
run: sudo apt-get update | ||
|
||
- name: Install dependencies | ||
run: sudo apt-get install doxygen | ||
|
||
- name: Configure | ||
shell: bash | ||
run: | | ||
cmake -E make_directory ${{github.workspace}}/build | ||
cmake -B ${{github.workspace}}/build -S ${{github.workspace}} \ | ||
-DCMAKE_BUILD_TYPE=$BUILD_TYPE | ||
- name: Build | ||
shell: bash | ||
run: | | ||
cmake --build ${{github.workspace}}/build --target all docs install -j4 | ||
- name: Test | ||
shell: bash | ||
run: | | ||
cmake --build ${{github.workspace}}/build --target check |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: CodeQL | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
# The branches below must be a subset of the branches above | ||
branches: [ master ] | ||
schedule: | ||
- cron: '23 13 * * 3' | ||
|
||
jobs: | ||
analyze: | ||
name: Analyze | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
language: [ 'cpp' ] | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
|
||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v1 | ||
with: | ||
languages: ${{ matrix.language }} | ||
# If you wish to specify custom queries, you can do so here or in a config file. | ||
# By default, queries listed here will override any specified in a config file. | ||
# Prefix the list here with "+" to use these queries and those in the config file. | ||
# queries: ./path/to/local/query, your-org/your-repo/queries@main | ||
|
||
- name: Build | ||
run: | | ||
cmake -E make_directory ${{github.workspace}}/build.lgtm | ||
cmake -B ${{github.workspace}}/build.lgtm -S ${{github.workspace}} \ | ||
-DCMAKE_VERBOSE_MAKEFILE=ON \ | ||
-DCMAKE_BUILD_TYPE=Release | ||
cmake --build ${{github.workspace}}/build.lgtm -j4 | ||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v1 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.