From a4a6dbddf412f7e66bf80131105d27c2bfb34e17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torsten=20B=C3=B6gershausen?= Date: Tue, 22 Oct 2024 12:05:44 +0200 Subject: [PATCH 1/3] motorRecord.cc: Post ueip if reset to false when encoder missing commit 24a53e660e213ae6a57dc4d6f5648bed895ef85e, "motorRecord: Reset UEIP to No if no encoder is present" Seems to have introduced a typo: When ueip is reset to false, because there is no encoder, then db_post_events(ueip) should be called, not urip. --- motorApp/MotorSrc/motorRecord.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/motorApp/MotorSrc/motorRecord.cc b/motorApp/MotorSrc/motorRecord.cc index 1760b6dc6..ae78a1766 100644 --- a/motorApp/MotorSrc/motorRecord.cc +++ b/motorApp/MotorSrc/motorRecord.cc @@ -3664,7 +3664,7 @@ static void process_motor_info(motorRecord * pmr, bool initcall) if ((pmr->ueip == motorUEIP_Yes) && (!(msta.Bits.EA_PRESENT))) { pmr->ueip = motorUEIP_No; - db_post_events(pmr, &pmr->urip, DBE_VAL_LOG); + db_post_events(pmr, &pmr->ueip, DBE_VAL_LOG); } if (pmr->ueip == motorUEIP_Yes) { From c1830b2f2d428e2e15ad9a13265cc9f0f65f9612 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torsten=20B=C3=B6gershausen?= Date: Tue, 22 Oct 2024 12:15:08 +0200 Subject: [PATCH 2/3] ci-scripts-build-full.yml: Remove ubuntu 18.04 --- .github/workflows/ci-scripts-build-full.yml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.github/workflows/ci-scripts-build-full.yml b/.github/workflows/ci-scripts-build-full.yml index a0fae5092..aba7fdbcb 100644 --- a/.github/workflows/ci-scripts-build-full.yml +++ b/.github/workflows/ci-scripts-build-full.yml @@ -108,22 +108,6 @@ jobs: #! set: modules #! name: "Ub-20 gcc-9 + RT-5.1 beatnik" - - os: ubuntu-18.04 - cmp: gcc - configuration: default - base: "7.0" - set: modules - name: "Ub-18 gcc-7" - - ### g++-8 not found - #!- os: ubuntu-18.04 - #! cmp: gcc-8 - #! utoolchain: true - #! configuration: default - #! base: "7.0" - #! set: modules - #! name: "Ub-18 gcc-8" - #!- os: ubuntu-20.04 #! cmp: gcc-8 #! utoolchain: true From 685e79fd704796efd8583b170237e90591a4c313 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torsten=20B=C3=B6gershausen?= Date: Tue, 22 Oct 2024 12:21:48 +0200 Subject: [PATCH 3/3] ci-scripts-build.yml: upload-artifact@v3 --- .github/workflows/ci-scripts-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-scripts-build.yml b/.github/workflows/ci-scripts-build.yml index d62527506..75bd28d80 100644 --- a/.github/workflows/ci-scripts-build.yml +++ b/.github/workflows/ci-scripts-build.yml @@ -96,7 +96,7 @@ jobs: - name: Run main module tests run: python .ci/cue.py test - name: Upload tapfiles Artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: tapfiles ${{ matrix.name }} path: '**/O.*/*.tap'