Skip to content

Commit 001fab9

Browse files
authored
Remove the instruction to override "tickless-from-us-ticker" (#1319)
The following PR removes the need to override it: ARMmbed/mbed-os#12988 Signed-off-by: Hugues Kamba <[email protected]>
1 parent cdf39a3 commit 001fab9

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

docs/bare_metal/mbed2_porting.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -90,15 +90,7 @@ Configure your target to support Mbed OS 6:
9090
9191
<span class="notes">**Note:** As mentioned above, to successfully build with microlib, the target must define a two-region memory model. You might need to replace the content of the `TOOLCHAIN_ARM_STD` linker file with that of `TOOLCHAIN_ARM_MICRO`, which includes a two-region memory model linker file.</span>
9292
93-
1. If your board does not have a low power ticker, ensure that tickless is enabled using the microsecond ticker:
94-
95-
```json
96-
"overrides": {
97-
"tickless-from-us-ticker": true
98-
}
99-
```
100-
101-
- By default, all bare metal targets are configured to have a boot stack size of 0x1000 (4,096 bytes). If this is too much for your target, you will need to override the stack allocation to match your target's available RAM.
93+
1. By default, all bare metal targets are configured to have a boot stack size of 0x1000 (4,096 bytes). If this is too much for your target, you will need to override the stack allocation to match your target's available RAM.
10294
10395
The stack size is configured by setting a value for the `boot-stack-size` attribute; this value must be a multiple of 8 for alignment purposes. We recommend that you reduce the boot stack size to 0x400 (1,024 bytes) if your target has 8KB of RAM and to 0x300 (768 bytes) if your target has 4KB of RAM.
10496

0 commit comments

Comments
 (0)