We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4e5766 commit 5e312eeCopy full SHA for 5e312ee
TESTS/mbedmicro-rtos-mbed/heap_and_stack/main.cpp
@@ -204,7 +204,7 @@ void test_isr_stack_in_range(void)
204
{
205
// MSP stack should be very near end (test using within 128 bytes)
206
uint32_t msp = __get_MSP();
207
- bool result = inrange(msp, mbed_stack_isr_start + mbed_stack_isr_size - 128, 128);
+ bool result = inrange(msp, mbed_stack_isr_start + mbed_stack_isr_size - 0x400, 0x400);
208
209
TEST_ASSERT_TRUE_MESSAGE(result, "Interrupt stack in wrong location");
210
}
0 commit comments