Skip to content

Commit 3a9b79a

Browse files
committed
Remove the instruction to override "tickless-from-us-ticker"
The following PR removes the need to override it: ARMmbed/mbed-os#12988 Signed-off-by: Hugues Kamba <[email protected]>
1 parent 0f2e4b8 commit 3a9b79a

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
@@ -92,15 +92,7 @@ Configure your target to support Mbed OS 6:
9292
9393
<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>
9494
95-
1. If your board does not have a low power ticker, ensure that tickless is enabled using the microsecond ticker:
96-
97-
```json
98-
"overrides": {
99-
"tickless-from-us-ticker": true
100-
}
101-
```
102-
103-
- 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.
95+
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.
10496
10597
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.
10698

0 commit comments

Comments
 (0)