mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-27 06:55:22 +00:00
Use setting from devicetree to drive the default setting for CORTEX_M_SYSTICK. We update the dts files to default systick to be enabled since the major of cortex-m platforms utilize it by default (except on Nordic SoCs, TI CC13x2/CC26x2 and MEC1501 in which we default to disabled). Fixes #25299 Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
15 lines
189 B
Plaintext
15 lines
189 B
Plaintext
/* SPDX-License-Identifier: Apache-2.0 */
|
|
|
|
|
|
/ {
|
|
sw_pwm: sw-pwm {
|
|
compatible = "nordic,nrf-sw-pwm";
|
|
status = "disabled";
|
|
label = "SW_PWM";
|
|
};
|
|
};
|
|
|
|
&systick {
|
|
status = "disabled";
|
|
};
|