mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-07-05 03:47:15 -04:00
Compare commits
1 commit
a6ccb7e784
...
b75dbc2bb1
Author | SHA1 | Date | |
---|---|---|---|
|
b75dbc2bb1 |
26
.github/workflows/formatting.yml
vendored
Normal file
26
.github/workflows/formatting.yml
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
name: Format Pull Request Files
|
||||
|
||||
on:
|
||||
issue_comment:
|
||||
types: [created]
|
||||
|
||||
env:
|
||||
bashPass: \033[32;1mPASSED -
|
||||
bashInfo: \033[33;1mINFO -
|
||||
bashFail: \033[31;1mFAILED -
|
||||
bashEnd: \033[0m
|
||||
|
||||
jobs:
|
||||
Formatting:
|
||||
name: Run Formatting Check
|
||||
if: ${{ github.event.issue.pull_request &&
|
||||
( ( github.event.comment.body == '/bot run uncrustify' ) ||
|
||||
( github.event.comment.body == '/bot run formatting' ) ) }}
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Apply Formatting Fix
|
||||
id: check-formatting
|
||||
uses: FreeRTOS/CI-CD-Github-Actions/formatting-bot@main
|
||||
with:
|
||||
exclude-dirs: portable
|
||||
|
|
@ -187,7 +187,7 @@
|
|||
* ; * memory mode) registers the _usCriticalNesting value and the Stack Pointer
|
||||
* ; * of the active Task onto the task stack.
|
||||
* ; *---------------------------------------------------------------------------*/
|
||||
portSAVE_CONTEXT MACRO
|
||||
portSAVE_CONTEXT MACRO
|
||||
PUSH AX; /* Save AX Register to stack. */
|
||||
PUSH HL
|
||||
#if __CODE_MODEL__ == __CODE_MODEL_FAR__
|
||||
|
@ -217,7 +217,7 @@ portSAVE_CONTEXT MACRO
|
|||
* ; * general purpose registers and the CS and ES (only in __far memory mode)
|
||||
* ; * of the selected task from the task stack.
|
||||
* ; *---------------------------------------------------------------------------*/
|
||||
portRESTORE_CONTEXT MACRO
|
||||
portRESTORE_CONTEXT MACRO
|
||||
MOVW AX, _pxCurrentTCB; /* Restore the Task stack pointer. */
|
||||
MOVW HL, AX
|
||||
MOVW AX, [ HL ]
|
||||
|
|
Loading…
Reference in a new issue