From d060479353a341c2ceab42939fb72e676ca38906 Mon Sep 17 00:00:00 2001 From: alfred gedeon <28123637+alfred2g@users.noreply.github.com> Date: Tue, 19 Jan 2021 15:32:01 -0800 Subject: [PATCH 1/2] Fix Github checks after move from master to main (#246) --- .github/workflows/ci.yml | 2 +- .github/workflows/kernel-checks.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bc5e1d150..f5ff4eefb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ on: push: branches: ["**"] pull_request: - branches: [master] + branches: [main] workflow_dispatch: jobs: spell-check: diff --git a/.github/workflows/kernel-checks.yml b/.github/workflows/kernel-checks.yml index 8c644873d..4eb63055f 100644 --- a/.github/workflows/kernel-checks.yml +++ b/.github/workflows/kernel-checks.yml @@ -36,7 +36,7 @@ jobs: uses: lots0logs/gh-action-get-changed-files@2.1.4 with: token: ${{ secrets.GITHUB_TOKEN }} - + # Run checks - name: Check File Headers run: | From 6b524a2fee7f98b7f72eb20489fbea7d46c2ba1c Mon Sep 17 00:00:00 2001 From: Evgeny Ermakov <22344340+unspecd@users.noreply.github.com> Date: Tue, 19 Jan 2021 21:55:34 -0500 Subject: [PATCH 2/2] Fix typo in comment in task.h (#244) --- include/task.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/task.h b/include/task.h index 66c99c56f..cbf412b22 100644 --- a/include/task.h +++ b/include/task.h @@ -1638,7 +1638,7 @@ configSTACK_DEPTH_TYPE uxTaskGetStackHighWaterMark2( TaskHandle_t xTask ) PRIVIL * configSUPPORT_STATIC_ALLOCATION is set. For more information see this URI: https://www.FreeRTOS.org/a00110.html#configSUPPORT_STATIC_ALLOCATION * * @param ppxIdleTaskTCBBuffer A handle to a statically allocated TCB buffer - * @param ppxIdleTaskStackBuffer A handle to a statically allocated Stack buffer for thie idle task + * @param ppxIdleTaskStackBuffer A handle to a statically allocated Stack buffer for the idle task * @param pulIdleTaskStackSize A pointer to the number of elements that will fit in the allocated stack buffer */ void vApplicationGetIdleTaskMemory( StaticTask_t ** ppxIdleTaskTCBBuffer,