Browse Source
Make the LSE driving capability configurable for the STM32 series. Fixes #44737. Signed-off-by: Benedikt Schmidt <benedikt.schmidt@embedded-solutions.at>pull/45158/head
20 changed files with 65 additions and 12 deletions
@ -0,0 +1,22 @@
@@ -0,0 +1,22 @@
|
||||
# Copyright (c) 2022, SILA Embedded Solutions GmbH |
||||
# SPDX-License-Identifier: Apache-2.0 |
||||
|
||||
description: STM32 LSE Clock |
||||
|
||||
compatible: "st,stm32-lse-clock" |
||||
|
||||
include: [fixed-clock.yaml] |
||||
|
||||
properties: |
||||
driving-capability: |
||||
type: int |
||||
required: true |
||||
description: | |
||||
LSE driving capability, within the range 0 to 3. |
||||
0 represents the lowests driving capability, 3 |
||||
the highest. |
||||
enum: |
||||
- 0 |
||||
- 1 |
||||
- 2 |
||||
- 3 |
Loading…
Reference in new issue