Skip to content

Commit 3cdc314

Browse files
committed
Modify the definition as to whether RTOS is not present in sys.cpp.
1 parent 65b4e72 commit 3cdc314

File tree

2 files changed

+2
-2
lines changed
  • targets/TARGET_RENESAS/TARGET_RZ_A1XX
    • TARGET_GR_LYCHEE/device/TOOLCHAIN_ARM_STD
    • TARGET_RZ_A1H/device/TOOLCHAIN_ARM_STD

2 files changed

+2
-2
lines changed

targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/device/TOOLCHAIN_ARM_STD/sys.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ extern __value_in_regs struct __initial_stackheap _mbed_user_setup_stackheap(uin
5151
return r;
5252
}
5353

54-
#if !defined(MBED_CONF_RTOS_PRESENT) || !MBED_CONF_RTOS_PRESENT
54+
#ifndef MBED_CONF_RTOS_PRESENT
5555

5656
/* The single region memory model would check stack collision at run time, verifying that
5757
* the heap pointer is underneath the stack pointer. With two-region memory model/RTOS-less or

targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/device/TOOLCHAIN_ARM_STD/sys.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ extern __value_in_regs struct __initial_stackheap _mbed_user_setup_stackheap(uin
5151
return r;
5252
}
5353

54-
#if !defined(MBED_CONF_RTOS_PRESENT) || !MBED_CONF_RTOS_PRESENT
54+
#ifndef MBED_CONF_RTOS_PRESENT
5555

5656
/* The single region memory model would check stack collision at run time, verifying that
5757
* the heap pointer is underneath the stack pointer. With two-region memory model/RTOS-less or

0 commit comments

Comments
 (0)