diff options
| author | Ayush Singh <ayush@beagleboard.org> | 2025-06-16 22:05:35 +0530 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2025-06-23 11:39:43 +1000 |
| commit | 35f15cfdf2a04a0ad290d70383fc3e4be4f79812 (patch) | |
| tree | 99be90f06322e472e8f2e01e27368766d4fbd652 | |
| parent | 41fc3e1505fff31e79d60c17b29a790b46c3af6b (diff) | |
zephyr/boards/beagleconnect_freedom: Remove board overlay.
Since MicroPython supports Zephyr v4.0.0, no need for overlay to enable
PWM. It is enabled by default for a while now.
Signed-off-by: Ayush Singh <ayush@beagleboard.org>
| -rw-r--r-- | ports/zephyr/boards/beagleconnect_freedom.overlay | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/ports/zephyr/boards/beagleconnect_freedom.overlay b/ports/zephyr/boards/beagleconnect_freedom.overlay deleted file mode 100644 index 7dd4469c9..000000000 --- a/ports/zephyr/boards/beagleconnect_freedom.overlay +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (c) 2024 Ayush Singh <ayush@beagleboard.org> - * - * SPDX-License-Identifier: Apache-2.0 - */ - -&pinctrl { - /* MB1 PWM */ - pwm0_default: pwm0_default { - pinmux = <17 IOC_PORT_MCU_PORT_EVENT1>; - bias-disable; - drive-strength = <2>; - }; - - /* MB2 PWM */ - pwm1_default: pwm1_default { - pinmux = <19 IOC_PORT_MCU_PORT_EVENT3>; - bias-disable; - drive-strength = <2>; - }; -}; - -&gpt0 { - status = "okay"; -}; - -&gpt1 { - status = "okay"; -}; - -&pwm0 { - status = "okay"; - pinctrl-0 = <&pwm0_default>; - pinctrl-names = "default"; -}; - -&pwm1 { - status = "okay"; - pinctrl-0 = <&pwm1_default>; - pinctrl-names = "default"; -}; |
