Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TEST] Introduce multiple failures #3

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
[TEST] Introduce build failure
Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
  • Loading branch information
aggarg committed Mar 16, 2023
commit 69c20ef7f44e4870866d985b4fd7820707a4644c
2 changes: 1 addition & 1 deletion portable/GCC/ARM_CM3/port.c
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,7 @@ __attribute__( ( weak ) ) void vPortSetupTimerInterrupt( void )
* The following links provide detailed information:
* https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html
* https://www.FreeRTOS.org/FAQHelp.html */
configASSERT( ucCurrentPriority >= ucMaxSysCallPriority );
configASSERT( ucCurrentPriority >= ulMaxSysCallPriority );
}

/* Priority grouping: The interrupt controller (NVIC) allows the bits
Expand Down
2 changes: 1 addition & 1 deletion portable/GCC/ARM_CM3_MPU/port.c
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,7 @@ void vPortStoreTaskMPUSettings( xMPU_SETTINGS * xMPUSettings,
* The following links provide detailed information:
* https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html
* https://www.FreeRTOS.org/FAQHelp.html */
configASSERT( ucCurrentPriority >= ucMaxSysCallPriority );
configASSERT( ucCurrentPriority >= ulMaxSysCallPriority );
}

/* Priority grouping: The interrupt controller (NVIC) allows the bits
Expand Down